所以我使用了本文中的方法:http: //css-tricks.com/perfect-full-page-background-image/
这是我的代码:
CSS:
#bg {
height: auto;
left: 0;
min-height: 100%;
min-width: 1024px;
position: fixed;
top: 0;
z-index: -1;
width: 100%;
}
@media only screen
and (max-width : 1024px) {
#bg {
left: 50%;
margin-left: -512px;
}
html:
<img id="bg" src="breakfast.jpg">
这在大多数情况下都有效,除了移动浏览器中的高度/宽度比被搞砸了。