css background属性

css的background属性

  1. 第一种写法 [background-image background-position / background-size]
background: url("xxx.png") center / 100%;
复制代码
  1. 第二种写法
background: url("xxx.png") no-repeat;
background-size: 100px 100px;
复制代码
  1. 在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
喜欢就支持一下吧
点赞0 分享