小编典典

Sass 中的 :after 和 :before 伪元素选择器

all

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

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

当然,上述失败。


阅读 209

收藏
2022-06-15

共1个答案

小编典典

使用 & 指定父选择器

SCSS 语法:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

    &:after {
        content: "* * *";
    }
}
2022-06-15