我使用以下CSS更改了表的备用行的颜色:
tr:nth-child(odd) { background-color:#dedede; color: black; }
tr:nth-child(even) { background-color:none; }
但我想使用CSS更改备用行中超链接的颜色。 我尝试使用
更改颜色tr:nth-child(odd) a{ background-color:#dedede; color: black; }
tr:nth-child(even) a{ background-color:none; }
但它对我不起作用
请帮助
答案 0 :(得分:1)
它工作正常亲爱的尝试这个:
tr:nth-child(odd) a{ background-color:#dedede; color: #996633; }
tr:nth-child(even) a{ background-color:none; color : #FF0000}