我觉得此 mixin 的代码太冗长,请帮助。
请随时通过任何有关mixin的建议。
@mixin bold { font-weight: bold; }
@mixin normal { font-weight: normal; }
@mixin font($bold, $normal) {
@if ($bold) {
@include bold
} @else {
font-weight: normal;
}
}
h1 { @include font(false, false) }
h2 { @include font(true, true) }
答案 0 :(得分:3)
您可以简化它:
$bold: 700;
$normal: 400;
h1 {
font-weight: $bold;
}
h2 {
font-weight: $normal;
}