是否可以将选择器嵌套或组合在一起?例如,我有以下 CSS:
.feature > *:hover > .info,
.feature > .select > .info {bottom:0;}
.feature > *:hover > .img,
.feature > .select > .img,
.feature > *:hover > .link,
.feature > .select > .link {top:-25px;bottom:51px;}
是否可以以类似于以下伪 CSS 的方式对许多选择器进行分组(我正在使用方括号,但我意识到这不起作用):
.feature > (*:hover,.select) > .info {bottom:0;}
.feature > (*:hover,.select) > (.img,.link) {top:-25px;bottom:51px;}
我注意到 CSS3 有 :not() 选择器,但我找不到 :or() 选择器。