2013-05-30 74 views
0

我所使用的實際圖像的背景圖像內body標籤然後被固定它具有的actual site如何避免背景圖像平鋪當瀏覽器窗口調整大小

一個例子當我在大屏幕的背景圖像上查看像這樣的瓷磚enter image description here

我該如何使圖像不會在實際網站中顯示並且仍然是「單個」。

CSS我使用的是下面

body { 
margin:0; padding:0; 
background: url(../images/new.jpg) fixed #A8BFAD; 
} 

回答

4

如果你想要的形象保持實際尺寸:

body { 
     background: url(../images/new.jpg) fixed #A8BFAD no-repeat; 
    } 

如果你想要圖像填補了屏幕:

body { 
    background: url(../images/new.jpg) fixed #A8BFAD; 
    background-size: cover; 
} 
+0

我很確定這個答案給你兩個很好的解決方案,其中一個你甚至不知道你想要的。 – dkroy

+0

這工作完美! – Olubunmi

+0

@dkroy我從來不知道「背景大小:封面」,這正是我想要的。 – Olubunmi

0

添加background-repeat:no-repeat;body在你的CSS

body { 
    margin:0; 
    padding:0; 
    background: url(../images/new.jpg) fixed #A8BFAD; 
    background-repeat:no-repeat; 
} 
相關問題