我有两个div标签:
div class="one two three"
div class="three two one"
我可以构建css仅针对".one.two.three"但不针对的规则".three.two.one"吗?
css
".one.two.three"
".three.two.one"
使用属性选择器:
div[class="one two three"] {}
但是您应该注意空格,因为空格很重要,并且可能会使选择器无效