如何按照Sass的语法或者SCSS的语法使用:before和:after伪元素选择器?像这样:
p
margin: 2em auto
> a
color: red
:before
content: ""
:after
content: "* * *"
当然,上述情况失败了。
答案 0 :(得分:351)
Use ampersand to specify the parent selector
SCSS语法:
p {
margin: 2em auto;
> a {
color: red;
}
&:before {
content: "";
}
&:after {
content: "* * *";
}
}