我没有很多CSS经验,但最近我发现在类选择器之前有一个空格和没有一个空格之间有区别.到目前为止,我只知道它们被解释为两个不同的东西…… CSS中有经验的人能否向我解释具体的区别是什么?这也适用于id选择器吗?
谢谢.感谢你的回答.
最佳答案
#someid ul li.someclass一种手段
Anchors that are descendants of@H_301_14@ list items that have the class
someclass
and are themselves descendants of@H_301_14@ unordered lists that are descendants of@H_301_14@ the element with IDsomeid
.
#someid ul li .someclass a means
Anchors that are descendants of@H_301_14@ any elements that have the class
someclass
and are themselves descendants of@H_301_14@ list items that are descendants of@H_301_14@ unordered lists that are descendants of@H_301_14@ the element with IDsomeid
.
因此,< a>以下标记中的元素由第一个规则匹配,但不与第二个规则匹配: