假设我们有这个 html:
<table>
<caption>test</caption>
<colgroup>
<col class='col1'/>
<col class='col2'/>
<col class='col3'/>
</colgroup>
<thead>
<tr>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell1.1</td>
<td>Coll1.2</td>
<td>Coll1.3</td>
</tr>
<tr>
<td>Cell2.1</td>
<td>Coll2.2</td>
<td>Coll2.3</td>
</tr>
<tr>
<td>Cell3.1</td>
<td>Coll3.2</td>
<td>Coll3.3</td>
</tr>
</tbody>
</table>
我们有这个 CSS:
.col2{
background-color: #AAA;
}
.col1,col3{
background-color: #FFF;
}
现在我想选择th
与col2
列关联的在其上放置背景图像。
像.col2:th
orth.col2
或.col2 th
, ...
我想选择但通过从元素th
寻址;col
我正在设置类col
,它是动态的,所以我想th
按col
元素而不是直接访问
我如何选择col
与 CSS 的特定标签相关联的特定标签?