有一個有效的css規則(jquery僅作爲最後一次機會),允許定義一個表的所有td的樣式,只有當有第th行時。css:只有當表有所有td
更具體
<table>
<tr>
<td>
STYLE 1 HERE, my background color is white
</td>
</tr>
</table>
<table>
<tr>
<th>
some text
</th>
</tr>
<tr>
<td>
STYLE 2 HERE, my table has TH, my background color is red
</td>
</tr>
</table>
CSS:
th, td {
background-color:#ffffff
}
?????? {
background-color:#ff0000
}
有一種方法?
在此先感謝, cicciopas