标签: html css css3
如何将[attribute*=value]选择器与:not(selector)?
[attribute*=value]
:not(selector)
我有一个案例,我尝试将一些CSS规则更改为除Index.aspx之外的所有页面但不起作用。我的测试:
form:not([action*='Index']) .wk-path{ margin: 18px 2%; } :not(form[action*='Index']) .wk-path{ margin: 18px 2%; }
有什么想法吗?其余页面不包含url中的索引文字。