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.
这个 sass 代码有效吗?
tr:nth-child(odd) :background-color #cccccc
不知何故,它不会为我的表格的交替行着色。
你使用的是什么浏览器? nth-child 目前在 Firefox 或IE中不支持。你可能不得不使用旧的奇数/偶数类的东西。
nth-child
Compass 为使用 sass 设置表格样式提供了 mixins,由于对 CSS3 的支持不佳,它需要一些额外的 css 类。
有关更多信息,请参阅wiki 文档的表格实用程序部分。演示在这里。