在 css 中,要匹配多个属性,您可以使用:
selector[attr1][attr2]{
code goes here
}
有没有办法使用布尔逻辑让 css 匹配属性?例如:
selector[attr1]OR[attr2]{
code goes here
}
selector
将适用于具有attr1
,attr2
或两者的任何实例!
这存在吗?如果是这样,语法是什么?
在 css 中,要匹配多个属性,您可以使用:
selector[attr1][attr2]{
code goes here
}
有没有办法使用布尔逻辑让 css 匹配属性?例如:
selector[attr1]OR[attr2]{
code goes here
}
selector
将适用于具有attr1
,attr2
或两者的任何实例!
这存在吗?如果是这样,语法是什么?