
在开发中背景属性 background 还是很常用的, background 有很多属性,如 background-color 背景颜色、 background-image 背景图像、 background-position 背景图像的位置、 background-size 背景图片的尺寸、 background-repeat 重复背景图像、 background-origin 定位区域、 background-clip 绘制区域、 background-attachment 是否固定或者跟随页面滚动。
当然这些属性可以分开写,也可以连写(简写),规则(顺序)如下:
background:color img_url repeat attachment position / size示例:
background:#F00 url('img/images.png') no-repeat fixed center / coverbackground-position ,后面是 background-size 。这样分开写会更好理解一些:
background:#F00 url('img/images.png') no-repeat fixed top left / 100% auto声明:本文由w3h5原创,转载请注明出处:《CSS3背景图片background属性简写/连写》 https://cloud.tencent.com/developer/article/1538122