css 公共抽取

来源:互联网 发布:fpga数据采集系统 编辑:程序博客网 时间:2024/06/06 00:51
@mixin font-size-custom() {
content: '';
width: 32px;
height: 32px;
display: block;
}

.ion-ios-wenzhen:before {
@include font-size-custom;
background: no-repeat url('../assets/imgs/wenzhenbefore.png');

}

//scss
@mixin box-size($width:100px,$height:100px) {
width: $width;
height: $height;
}
.demo{
@include box-size;
}

.demo2{
@include box-size(200px,300px);
}


原创粉丝点击