2010-11-20 182 views
0

有沒有辦法在頁面背景上動態調整圖像大小?我有一個Y軸重複的背景,但如果我使高度尺寸更大,並且頁面包含的內容較少,則背景不適合。任何人都可以請幫忙嗎?感謝css中的圖像背景

+0

可能是重複的http://stackoverflow.com/questions/1112597/stretch-image-as-background – mattbasta 2010-11-20 07:09:45

回答

-1

事實上,你想要的是沒有可能(或許在CSS3?)。我認爲最好的方式是使用CSS background-attachment。

body { 
background-attachment: fixed; /*background doesn't scroll out of the screen */ 
background-position: top center; /* background's center is in the center of the window */ 
}