0

我的 iPhone 网页布局有问题,我的背景图片不适合 safari 的视图(在 iPhone4 中),我的背景图片大小:w:480 px / h:720px

我的身体CSS代码:

body
{
height:100%;
margin:0px;
background-image:url(../images/bg.png);
background-repeat:no-repeat;
background-size: cover;
}

实际上,我真的不知道视网膜显示器和普通3g显示器的背景分辨率应该是多少......以及如何调整它们......

如果有人可以帮助我,我会很高兴...

4

1 回答 1

1

嗨,请使用此代码而不是您的身体:

body{
font-size:100%;
background:url(../images/bg.png) no-repeat center top;
background-size:100% auto;
margin:0 auto;
}
于 2012-06-19T05:52:42.277 回答