web-dev-qa-db-ja.com

:Sassの擬似要素セレクタ

Sass、あるいはSCSSの構文に従って、:beforeおよび:after擬似要素セレクタをどのように使用できますか。このような:

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

もちろん、上記は失敗します。

148
Marco Godínez

アンパサンドを使用して親セレクタを指定します

SCSSの構文:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

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