213

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

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

当然,上述失败。

4

1 回答 1

482

使用 & 指定父选择器

SCSS 语法:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

    &:after {
        content: "* * *";
    }
}
于 2012-05-25T08:06:36.523 回答