css的background属性
- 第一种写法 [background-image background-position / background-size]
background: url("xxx.png") center / 100%;
复制代码
- 第二种写法
background: url("xxx.png") no-repeat;
background-size: 100px 100px;
复制代码
- 在scss中定义混入和使用混入来快速引入背景图片
@mixin initBox($url, $width, $height) {
width: $width;
height: $height;
background: $url center / $width $height;
}
复制代码
@mixin initBox($url, $width, $height) {
width: $width;
height: $height;
background: $url no-repeat;
background-size: $width $height;
}
复制代码
@include initBox(url('xxx.png'), 100px, 100px);
复制代码
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END