0

iPhone で Safari を使用してこのページを参照すると、部分的に黒い画面が表示されます。エラーのスクリーンショットは次のとおりです。

画面

何か案が?背景画像の問題でしょうか?

4

2 に答える 2

1

背景画像が IPhone に読み込まれていない可能性があります。IPad でテストしましたが、すべて問題ありません。

bodyCSSを改善してみてください

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; 
}
于 2012-12-06T15:28:18.613 に答える