当我在 HTML 中定义这个 CSS 时,我发现它们甚至在 Firebug 中也不显示我,但我在编辑按钮 Firebug CSS 面板 [tab] 后看到
#tbl tr:odd td{
background: none repeat scroll 0 0 #FFFFFF;
}
好吧,我想让
tr
的背景颜色 #FFF
。 最佳答案
根据 CSS3 , even
和 odd
实际上是 :nth-child() 伪类的参数,而不是选择器本身。尝试:
#tbl tr:nth-child(odd) td {
background: none repeat scroll 0 0 #FFFFFF;
}
当然,您的浏览器必须支持 CSS3 才能使上述功能正常工作。
关于html - 如何使用表 tr :odd td in html,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4977008/