반응형
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
반응형
'programing' 카테고리의 다른 글
spring-boot-test와 spring-boot-test의 차이점은 무엇입니까? (0) | 2023.08.18 |
---|---|
도커 합성으로 도커 이미지에 태그를 지정하는 방법 (0) | 2023.08.18 |
Format-Table의 PowerShell 출력 색상을 지정하는 방법 (0) | 2023.08.18 |
Android ADB 장치 오프라인, 명령을 실행할 수 없음 (0) | 2023.08.18 |
창 기능을 사용하여 표의 열을 업데이트하는 방법 (0) | 2023.08.18 |