Sass、あるいはSCSSの構文に従って、:beforeおよび:after擬似要素セレクタをどのように使用できますか。このような:
p
margin: 2em auto
> a
color: red
:before
content: ""
:after
content: "* * *"
もちろん、上記は失敗します。
SCSSの構文:
p {
margin: 2em auto;
> a {
color: red;
}
&:before {
content: "";
}
&:after {
content: "* * *";
}
}