答案 0 :(得分:1)
也许你的背景图片没有加载到iPhone上。我用我的iPad测试过,一切都很好。
尝试改善body
css
body {
font: 14px/16px georgia, times, times new roman, arial;
background-image: url(http://www.lazzarotto.it/templates/lazzarotto/image/background.jpg);
background-repeat: repeat-x;
background-color: #fff;
padding: 0px;
margin: 0px;
color: #554e3c;
}
到
body {
font: 14px/16px georgia, times, times new roman, arial;
background: url(http://www.lazzarotto.it/templates/lazzarotto/image/background.jpg) #fff repeat-x;
padding: 0px;
margin: 0px;
color: #554e3c;
}
答案 1 :(得分:0)
您也可以选择CSS3 Gradient来实现渐变背景效果