如何在 Sass 中编写 tr:nth-child(odd) ?
这个 sass 代码有效吗?
tr:nth-child(odd)
:background-color #cccccc
不知何故,它不会为我的表格的交替行着色。
Is this sass code valid?
tr:nth-child(odd)
:background-color #cccccc
Somehow, it does not color my table's alternating rows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你使用的是什么浏览器?
nth-child
目前在 Firefox 中不支持,或者IE。 您可能必须使用旧的奇数/偶数类的东西。What browser are you using?
nth-child
isn't presently supported in Firefox, or IE. You'll probably have to use the old odd/even classes thing.Compass 提供了 mixins 来使用 sass 设计你的表格,由于对 CSS3 的支持较差,它需要一些额外的 css 类。
请参阅wiki 文档<的表格实用程序部分/a> 了解更多信息。 演示位于此处。
Compass provides mixins for styling your tables with sass, it requires some extra css classes due to poor support of CSS3.
See the Table Utilities section of wiki docs for more information. A demo is here.