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

时间:2012-05-25 07:49:31

标签: css css-selectors sass pseudo-element

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

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

当然,上述情况失败了。

1 个答案:

答案 0 :(得分:351)

Use ampersand to specify the parent selector

SCSS语法:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

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