gpt4 book ai didi

html - 如何为某些类用另一个替换 CSS 规则?

转载 作者:行者123 更新时间:2023-11-28 04:17:45 24 4
gpt4 key购买 nike

例如我有这个 CSS 规则:

.dataList table {
width: 100%;
}

.dataList table.onlyThisTables {
width: 400px;
}
<div class="dataList">
<table>
<tr>
<td>
Content of this table
<table class="onlyThisTables">
<tr>
<td>Content of this table
<td>
</tr>
</table>
</td>
</tr>
</table>
</div>

但总是在所有表中得到 width:100%;,我想用 400px 宽度影响 .onlyThisTables 类,如何我做吗?

最佳答案

这取决于您的 html 结构。你能举一个html代码的例子吗?大概答案是:

.dataList table {
width:100%;
}
.onlyThisTables {
width:400px;
}

关于html - 如何为某些类用另一个替换 CSS 规则?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42396006/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com