1

body タグに適用された次のスタイルは、サファリでは機能しません。問題は #faf5ef の色にあります。サファリでは黒く表示されます(v 5.1.7)。問題の内容とその修正方法を誰かが提案できますか?

 body {
    background: url(images/body_bg.png) no-repeat top center #faf5ef;   
    padding:0px;
    margin:0px;
}
4

3 に答える 3

1

この行を変更

background: url(images/body_bg.png)

このように使用します

background: url('images/body_bg.png')
background-repeat: no-repeat;
background-position: center top;
background-color: #faf5ef;
于 2013-06-12T14:14:58.840 に答える
1

次のようにパラメータの順序を変更します。

background: #faf5ef url(images/body_bg.png) no-repeat top center;

とにかく最後に色を付ける方法は標準的な方法ではなく、他の場所で機能する小さな奇跡です.

一般に、省略形のbackgroundプロパティでは、値は次の順序である必要があります。

background: color image repeat attachment position;

それらのいずれかを省略できますが、それでも同じ順序にする必要があります。

于 2013-06-12T14:13:08.800 に答える