reset-abbr()
축약 요소 초기화 믹스인
용도
<abbr>
요소를 초기화 설정하는 믹스인입니다.
사용법
reset-abbr()
믹스인을 실행합니다.
reset-abbr()
abbr {
@include reset-abbr;
}
위 예시 코드는 아래의 CSS로 컴파일 되어 출력됩니다.
abbr {
cursor: help;
text-decoration: none;
}
로직
reset-abbr()
믹스인은 다음의 로직에 의해 작성되었습니다.
@mixin reset-abbr() {
cursor: help;
text-decoration: none;
}
믹스인을 호출하면 코드를 출력
참고
믹스인에 사용된 Sass의 빌트인 모듈은 다음과 같습니다.
Last updated
Was this helpful?