reset-list()
목록 요소 초기화 믹스인
용도
사용법
nav ul, .resetList {
@include reset-list;
}nav ul, .resetList {
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style-type: none;
}로직
참고
Last updated
목록 요소 초기화 믹스인
nav ul, .resetList {
@include reset-list;
}nav ul, .resetList {
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style-type: none;
}Last updated
@mixin reset-list() {
@include my(0);
padding-left: 0;
list-style-type: none;
}