Each
-
Sass(SCSS) At-Rules #5[@each]CSS Preproseccor/Sass 2019. 5. 5. 19:45
@each // 구문 @each in {...} 블록은 지정된 변수 이름에 할당된 목록의 각 요소에 대해 차례로 평가된다. SCSS $sizes: 40px, 50px, 80px; @each $size in $sizes { .icon-#{$size} { font-size: $size; height: $size; width: $size; } } CSS .icon-40px { font-size: 40px; height: 40px; width: 40px; } .icon-50px { font-size: 50px; height: 50px; width: 50px; } .icon-80px { font-size: 80px; height: 80px; width: 80px; } with maps @each를 사용하여 mam..