Sass中的伪元素选择器之后的:after和:before [重复]

如何按照Sass或SCSS的语法使用:before和:after伪元素选择器?像这样:

p
  margin: 2em auto
  > a
    color: red
  :before
    content: ""
  :after
    content: "* * *"

当然,以上失败。

Mandy猪猪2020/03/17 18:06:20

使用&符指定父选择器

SCSS语法:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

    &:after {
        content: "* * *";
    }
}