网页缩放时背景图片下方出现空白(如图)
body {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
background: url(images/beijing.jpg) no-repeat;
background-size: cover;
}
搜过很多方法仍无解
加上 html {height: 100%;}
background-size: cover;应该没问题啊,自动填充满容器,确认设置的body元素?
改成
background-size:100% 100%;
试试