background-size与背景图片填满div
在开发中,常有需要将一张图片作为一个div的背景图片充满div的需求
background-size的取值及解释
background-size共有三种属性,分别为
background-size: cover
MDN文档解释说明:缩放背景图片以完全覆盖背景区,可能背景图片部分看不见。A keyword that is the inverse of contAIn. Scales the image as large as possible and(image doesn't get squished). The image "covers" the entire width or height of the container. When the image and container have different dimensions,
maintains image aspect ratio
the image is clipped either left/right or top/bottom.
这里的关键说明在于标红的两个区域,分别是
它会保持图片的宽高比
当图像和容器具有不同的尺寸时,图像被左/右或顶部/底部裁剪。
background-size: contain
MDN文档解释说明:缩放背景图片以完全装入背景区,可能背景区部分空白。A keyword that scales the image as large as possible and(image doesn't get squished). Image is letterboxed within the container. When the image and container have different dimensions,
maintains image aspect ratio
the empty areas (either top/bottom of left/right) are filled with the background-color.
这里的关键说明在于标红的两个区域,分别是
它会保持图片的宽高比
当图像和容器具有不同的尺寸时,空区域(左/右/上/右)填充背景色。
background-size: width-value,height-value;
分为
固定大小
百分比
auto
百分比的的MDN文档解释说明<percentage> 值,指定背景图片相对(background positioning area)的百分比。
背景区
,默认为盒模型的内容区与内边距,也可设置为只有内容区,或者还包括边框。如果attachment 为fixed,背景区为浏览器可视区(即视口),不包括滚动条。不能为负值。
背景区由background-origin设置
实验及声明
这次选用鲁殿作为背景图,这张图的尺寸是
260*234
260/234 ≈ 1.11

假设一div的宽高为200*200,下面测试中上为表现图,下为原图
background-size: contain

background-size: cover

background-size: auto (auto)

background-size: 100% 100%

分析及解释:首先
contain
原理在于contain要保持宽高比将图片完全放入div中
260→200
200/宽高比(1.11) = 180
再其次,cover在这个时候也是不符合要求的,虽然看起来貌似符合要求,但是与原图是有差别的吗,原因在于cover与contain完全放入相反,它要求完全覆盖。所以要覆盖就要从更小的高计算。
高234→200
宽就等于200×1.11 = 222
再再其次,auto是原图大小也是不符合的。
所以,是符合需求的。按照div的大小进行计算
background-size: 100%, 100%;
其他各种大小div与各种大小的图片搭配请参照上述说明自行分析。
个人建议这种需求都使用
background-size: 100%, 100%;