我的网站上有一张照片背景,使用background-size:cover
. 它在大多数情况下都有效,但在我的 Galaxy S3 纵向模式下会留下一个奇怪的~30px 空白区域。
我附上了截图。1px 青色线是为了说明整个屏幕。似乎背景在社交媒体之后立即停止ul
。
我通过删除ul
和背景将其自身附加到标语文本的底部来测试这一点。
另外,这是我的与移动肖像视图相关的 CSS:
@media only screen and (max-width: 480px) {
.logo {
position: relative;
background-size:70%;
-webkit-background-size: 70%;
-moz-background-size: 70%;
-o-background-size: 70%;
margin-top: 30px;
}
h1 {
margin-top: -25px;
font-size: 21px;
line-height: 21px;
margin-bottom: 15px;
}
h2 {
font-size: 35px;
line-height: 35px;
}
.footer_mobile {
display: block;
margin-top: 20px;
margin-bottom: 0px;
}
li {
display: block;
font-size: 1.3em;
}
这过去不会发生,但我想我在尝试解决另一个问题时不小心弄错了它。