reset-link()
하이퍼링크 요소 초기화 믹스인
용도
사용법
nav a, .resetLink {
@include reset-link;
}nav a, .resetLink {
text-decoration: none;
color: inherit;
}로직
참고
Last updated
하이퍼링크 요소 초기화 믹스인
nav a, .resetLink {
@include reset-link;
}nav a, .resetLink {
text-decoration: none;
color: inherit;
}Last updated
@mixin reset-link() {
text-decoration: none;
color: inherit;
}