Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 CSS 动态地为表中的替代行提供两种不同的 bgcolor。
我不想使用 jQuery 来解决这个问题。
使用 :nth-child() 伪类
tr:nth-child(odd){ background-color:green } tr:nth-child(even){ background-color:yellow }
演示
这是更多选择器示例。
您可以使用 CSS3nth-child选择器:
nth-child
tr:nth-child(odd)
表示 HTML 表格的奇数行。
使用:nth-of-type(n) 伪类
:nth-of-type(n)
像这样
tr:nth-of-type(2n){ background-color:green } tr:nth-of-type(2n-1){ background-color:yellow }
更多信息 点击这里