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