選擇個假設我們有這個網站:分配給特定的列
<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;
}
現在我想選擇與col2
列相關聯的th
在其上放置背景圖像。
喜歡的東西.col2:th
或th.col2
或.col2 th
...
我想選擇th
而是由col
元素尋址; 我正在設置類col
,它是動態的,所以我想訪問th
col
元素而不是直接
如何選擇與特定col
標籤與CSS關聯的特定標籤?
(小記:這不會對IE8的工作,因爲它是CSS3)下 – Pieter
@Pieter是的,你可以使用CSS3與[Selectivizr]餡餅(http://selectivizr.com/) –
是和否;我想通過從'col'元素尋址來選擇第二個'th';我在'col'設置類,它是動態的,所以我想通過'col'元素訪問'th'而不是直接訪問 – RYN