programing

Sass에서 :after 및 :before 유사 요소 선택기

yellowcard 2023. 8. 18. 22:28
반응형

Sass에서 :after 및 :before 유사 요소 선택기

Sass 또는 SCSS 구문을 따르는 :before 및 :before 유사 요소 선택기를 어떻게 사용할 수 있습니까?다음과 같이:

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

물론 위의 내용은 실패합니다.

앰퍼샌드를 사용하여 상위 선택기를 지정합니다.

SCSS 구문:

p {
    margin: 2em auto;

    > a {
        color: red;
    }

    &:before {
        content: "";
    }

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

언급URL : https://stackoverflow.com/questions/10750563/after-and-before-pseudo-element-selectors-in-sass

반응형