2012-05-24 117 views
1

由於某種原因,我的平鋪圖像不能平鋪在整個背景上。儘管當我調整窗口大小時,它佔據了整個背景。平鋪背景圖像不能平鋪在整個頁面上

背景設置在CSS中。

body { 
    background: url(img/tile.gif) #e6e6e6; 
    width: 100%; 
    height: 100%; 
} 

這是在Chrome和Safari中,所以webkit。在Firefox中正常工作。

tile img

回答

3

嘗試:

body{ 
background-image: url(img/tile.gif); 
background-color: #e6e6e6; 
background-repeat: repeat-x; 
} 
1
background: url(img/tile.gif) repeat #e6e6e6;