该属性是所有设置背景属性的集合,下面列表为background
属性的参数顺序,从上到下。
background-color
background-image
background-repeat
background-attachment
background-position / background-size
background-clip
在上面列举的参数中,比较常用的一组参数配搭为background: 图片地址 是否重复 显示位置
。
<!-- 通过这三个简单的参数配搭,其实已经能涵盖大部分使用场景 -->
<div style="width:500px;height:200px; background: url('https://www.jmjc.tech/public/home/img/flower.png') no-repeat 50% 50%"></div>
显示效果