【发布时间】:2018-06-07 16:57:20
【问题描述】:
我的 body 标签上的背景图片有问题。在移动设备上查看时,页面底部有一个空白区域。
这是我的css代码:
body {
background: url("/images/laptop_bg.jpg");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
font-family: 'Proxima Nova', Georgia, sans-serif;
}
html{
height: 100%;
}
我在 stack-overflow 上找到的解决方案不起作用。任何帮助,将不胜感激。谢谢
【问题讨论】:
-
您是否尝试将身体的高度设置为 100%?
标签: html css background-image