如何在 Sass 中编写 tr:nth-child(odd) ?

发布于 2024-07-24 16:13:31 字数 124 浏览 1 评论 0原文

这个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吃→可爱长大的 2024-07-31 16:13:31

你使用的是什么浏览器? 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.

情深如许 2024-07-31 16:13:31

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文