这里我有SCSS来设置列表项的样式。我想知道的是类和伪选择器的选择顺序。基本上,&:before.active
是否等于&.active:before
?
以下是后者的完整示例:
.sidebar-list {
list-style-type: none;
padding: 0;
& li {
padding: 4px 0;
&:before { // Here,
color: darken($font-color, 60%);
font-family: "FontAwesome";
content: "\f101\00a0";
}
&.selected:before { // And here.
color: darken($font-color, 30%);
}
}
}
重要部分的前者(在li
内):
&:before { // Here,
color: darken($font-color, 60%);
font-family: "FontAwesome";
content: "\f101\00a0";
&.selected { // And here. This would evaluate to "li:before.selected"
color: darken($font-color, 30%);
}
}
对于列表项的:before
伪造选择器样式,哪一个是正确的?
谢谢!
答案 0 :(得分:2)
是的,订单确实很重要。 li:before.selected
基本上会被忽略,因为它无效。
以下是一个代码段:
span::before {
content:'span::before (Normal)';
background-color: #ddd;
}
/* Valid */
span.ribbon::before {
content: "span.ribbon::before (Valid)";
background-color: #0f0;
}
/* Invalid. Will be ignored */
span::before.ribbon {
content: "span::before.ribbon (Invalid)";
background-color: #f00;
}
<span></span>
<span class="ribbon"></span>
此外,您还需要为::before
伪元素使用双冒号(在CSS3中更新)。