height-width.scss 218 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 @for $i from 1 through 100 { $heightValue: 1% * $i; .h-#{$i} { height: $heightValue !important; } } @for $i from 1 through 100 { $widthValue: 1% * $i; .w-#{$i} { width: $widthValue !important; } }