简体   繁体   English

Iphone4设计中的背景问题

[英]Background trouble in Iphone4 design

I have a problem with layout iPhone web page , My background image does not fit on view of safari (in iPhone4), my background image size : w:480 px / h:720px . 我在布局iPhone网页时遇到问题,我的背景图片不适合Safari浏览器的视图(在iPhone4中),我的背景图片尺寸为: w:480 px / h:720px

my body css code : 我的身体CSS代码:

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

actually , i really don't know what should background resolution for retina display and normal 3g display ... and how to adjust them ... 实际上,我真的不知道视网膜显示和普通3g显示器的背景分辨率应该如何以及如何调整它们……

If someone can help me , I will be glad... 如果有人可以帮助我,我会很高兴...

Hi please use this code instead of your body: 嗨,请使用以下代码代替您的身体:

body{
font-size:100%;
background:url(../images/bg.png) no-repeat center top;
background-size:100% auto;
margin:0 auto;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM