我想要类似以下的东西(比如 a ||
):
[.pw-each-placecomment or .pw-each-usercomment] h2 { }
这可能吗?
我想要类似以下的东西(比如 a ||
):
[.pw-each-placecomment or .pw-each-usercomment] h2 { }
这可能吗?
现在不是纯 CSS。Firefox 引入了 non-standard :any()
,但它是实验性的,并且仅在 Firefox、Chrome 和 Safari 中。它可能会成为:matches()
,所以请密切关注它。
如果您不使用 CSS 预处理器,例如 SASS、Stylus、LESS 等,那么您将很难走运。
你必须把它们都列出来。
.pw-each-placecomment h2,
.pw-each-usercomment h2 {
}