使用scss 循环 封装flex类名
时间: 2023-03-23 22:00:59 浏览: 123
在weex中愉快的使用scss的方法步骤
很高兴回答你的问题。使用SCSS循环封装flex类名可以通过使用@each循环来实现。比如:@each $name in flex-start,flex-end,center,start,end,space-between,space-around { .#{$name} { display: flex; justify-content: #{$name}; } } 这样就可以封装出flex-start、flex-end、center、start、end、space-between、space-around等flex类名了。
阅读全文