後谷歌-ING和計算器-ING,我仍然沒有能夠解決這個問題之一:末TD和倒數第二個TD在TR(CSS/LESS)
我有一個表約十幾行。一個行看起來是這樣的:
<tr class="rvw-product-total">
<td colspan="2"></td>
<td>Total:</td>
<td>$180.67</td>
</tr>
最後兩個達陣該行(Total和$ 180.67)中應該有一個綠色background-color
和bold
文本。
這樣我就可以得到這個CSS實現/更少,像這樣:
tr[class="rvw-product-total"]:last-child td, tr[class="rvw-product-total"]:nth-child(n+2) td {
font-weight: bold;
background-color: #DFF0D8;
}
這使得整排綠色的background-color
。
然後我試着明確的首個TD的background-color
設置爲白色,像這樣:
tr[class="rvw-product-total"]:first-child td {
background-color: #fff;
}
但整個行仍然是綠色background-color
,我只是好奇我是什麼在這裏做錯了嗎?
這裏有一個的jsfiddle快速演示:http://jsfiddle.net/acegyver/EYVvc/2/
@完美黑暗:謝謝。 – Ace 2013-02-25 17:19:39