전달된 CSS 속성에 콜론과 세미콜론이 있기 때문에 Sass에서 자리 표시자 믹스인을 생성하는 데 문제가 있습니다. mixin.
이 문제를 극복하려면 mixin:
@mixin placeholder {
::-webkit-input-placeholder {@content}
:-moz-placeholder {@content}
::-moz-placeholder {@content}
:-ms-input-placeholder {@content}
}
이제 다음과 같이 믹스인을 포함할 수 있습니다.
@include placeholder {
font-style: italic;
color: white;
font-weight: 100;
}
또한 Sass 3.4에는 @at-root 지시문이 도입되어 중첩된 컨텍스트와 중첩되지 않은 컨텍스트 모두에서 작동하는 방식으로 믹스인을 작성할 수 있습니다.
@mixin placeholder {
@include optional-at-root('::-webkit-input-placeholder') {
@content;
}
@include optional-at-root(':-moz-placeholder') {
@content;
}
@include optional-at-root('::-moz-placeholder') {
@content;
}
@include optional-at-root(':-ms-input-placeholder') {
@content;
}
}
@at-root를 @content와 함께 사용하면 믹스인이 모든 시나리오에서 올바르게 작동하도록 보장할 수 있습니다.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3