有没有办法使用 div 类中的 sass mixin 生成像素/百分比/rem 大小?例如,以下是类可能设置的示例:
<div class="height-134px width-33percent">
这将是 CSS 输出:
.height-134px {
height: 134px;
}
.width-33percent {
width: 33%;
}
基本上试图让内容经理/设计师在需要时非常容易地微调某些东西。
有没有办法使用 div 类中的 sass mixin 生成像素/百分比/rem 大小?例如,以下是类可能设置的示例:
<div class="height-134px width-33percent">
这将是 CSS 输出:
.height-134px {
height: 134px;
}
.width-33percent {
width: 33%;
}
基本上试图让内容经理/设计师在需要时非常容易地微调某些东西。