reset-box-sizing()
박스 크기(Box Sizing) 기준 초기화 설정 믹스인
용도
사용법
@include reset-box-sizing();html {
box-sizing: border-box;
}
body {
box-sizing: border-box;
}
body::before, body::after {
box-sizing: inherit;
}
body * {
box-sizing: inherit;
}
body *::before, body *::after {
box-sizing: inherit;
}로직
참고
Last updated