2013-06-05 24 views

回答

0

您應該查看背景的shorthand implementation

background: (color) url(../images/box.png) no-repeat (position-x) (position-y); 
             ^^^^^ 
            there needs to be 
            a space here too 

我建議你移動到個人申報,如果你不打算指定一切以簡寫的形式出現,即:

background-image: url(../images/box.png); 
background-repeat: no-repeat; 
1

在圖像src和不重複之間添加一個空格。

url(../images/box.png) no-repeat 
相關問題