3.混合Mixin


Last updated


Last updated
@mixin alert($text-color, $background) {
color: $text-color;
background-color: $background;
a{
color: darken($text-color, 10%);
}
}
.alert-warning {
@include alert(#e69813,#f00909);
}
.alert-info {
@include alert($background:#fff, $text-color:#13e61e);
}