gpt4 book ai didi

html - 如何使用 CSS 控制特定表格中列的行为

转载 作者:行者123 更新时间:2023-11-28 10:43:56 25 4
gpt4 key购买 nike

我有以下控制行为的CSS我最喜欢的 table :

#table_myfavorite1, #table_myfavorite2  {
width: 100% !important;
}

我想做的是在该表中的列上指定相同的条件(即不是全局的)。

我试过了,但它影响了其他表。

#table_myfavorite1, #table_myfavorite2  td {
width: 100% !important;
}

正确的做法是什么?

最佳答案

使用后代选择器。您之前的代码将选择页面中的所有 td

HTML

First Table
<table id="table_myfavorite1">
<tr>
<td>1st column</td>
<td>2nd column</td>
</tr>
</table>
Second Table
<table id="table_myfavorite2">
<tr>
<td>1st column</td>
<td>2nd column</td>
</tr>
</table>

CSS

#table_myfavorite1 td {
background: lightgreen;
}

#table_myfavorite2 td {
background: tomato;
}

JSFiddle

只有当属性值相同时,您才可以分解上述代码,即您想要相同的背景:

#table_myfavorite1 td, #table_myfavorite2 td {
background: tomato;
}

关于html - 如何使用 CSS 控制特定表格中列的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30364996/

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