鉴于此选择器:
body[class*="page-node-add-"][class~="page-node-edit"] {background:red;}
它将匹配具有包含page-node-add-子字符串的类的主体和恰好是page-node-edit的类
我想说匹配第一个或第二个(但不是两者)。可能吗?
使用逗号的问题:
如果我有一个长选择器,例如:
body[class*="page-node-add-"] form.node-form > .field-type-field-collection > table > thead tr th,
body[class~="page-node-edit"] form.node-form > .field-type-field-collection > table > thead tr th
{...}
这是一种痛苦,我原以为 CSS3 会解决这个问题,我想象的是这样的:
body([class*="page-node-add-"]):or([class~="page-node-edit"]) {background:red;}
谢谢