是否有CSS方法可以选择类似于该类的元素?
<a class="" href="...">
像空类声明的选择器一样?
答案 0 :(得分:24)
答案 1 :(得分:19)
如果您说class
属性存在,则可以使用属性选择器,如下所示:
<a class="" href="...">asd</a>
a[class=""] {
color: red;
}
如果您希望在元素上没有class
属性时使用此功能,则可以使用:not([class])
。
<a href="...">asd</a>
a:not([class]) {
color: red;
}
然后可以将它们组合在一起以处理这两种情况。
<a href="...">asd</a>
<a class="" href="...">asd</a>
a[class=""],
a:not([class]) {
color: red;
}