2012-11-19 59 views

回答

11

用途:第n個孩子()僞類

tr:nth-child(odd){ 
    background-color:green 
} 
tr:nth-child(even){ 
    background-color:yellow 
}​ 

DEMO

Here是幾個選擇的例子。

+0

@Sowmya:我怎麼能刪除特定行的BGCOLOR而我用這個解決方案 –

+1

您可以指定樣式像TR行號: nth-child(4){style here} http://jsfiddle.net/XUNg3/11/或者您可以爲tat行指定類名併爲該類指定樣式。 – Sowmya

1

您可以使用CSS3選擇器nth-child

tr:nth-child(odd) 

代表了HTML表格的奇數行。

1

Demo

使用:nth-of-type(n)僞類

像這樣

tr:nth-of-type(2n){ 
    background-color:green 
} 
tr:nth-of-type(2n-1){ 
    background-color:yellow 
} 

Demo

更多信息click here