3

在 css 中,要匹配多个属性,您可以使用:

selector[attr1][attr2]{
    code goes here
}

有没有办法使用布尔逻辑让 css 匹配属性?例如:

selector[attr1]OR[attr2]{
    code goes here
}

selector将适用于具有attr1,attr2或两者的任何实例!

这存在吗?如果是这样,语法是什么?

4

1 回答 1

6

采用

selector[attr1], selector[attr2]{
code goes here
}
于 2013-08-06T21:18:47.830 回答