移动端背景图铺满屏幕

.divBox{ background: url(../images/bg1.png); position: fixed; width: 100%; height: 100%; background-size:cover; }

亲测这样写会失真,有些手机会把图片拉的很长变形,解决方案如下:

.bgImg{ position: fixed; width: 100%; height: 100%; object-fit: cover; //这个属性好用 }

你可能感兴趣的:(移动端背景图铺满屏幕)