2010-08-27 107 views

回答

0

在該網站上,這條線

<div><img src="images/bottom_bg.jpg" width="100%" alt="" /></div> 

改變

<div id="foobar"><img src="images/bottom_bg.jpg" width="100%" alt="" /></div> 

,並添加以下CSS:

<style> 
#foobar{ position: fixed; bottom: 0px; width: 100%; } 
</style> 

這應該做的工作。

0
body{ 
    background-image:url('lake.jpg'); /* or whatever */ 
    background-attachment:fixed; 
} 
0

嘗試

background-attachment:fixed; 
3

或者在速記:

body {background: url("/images/myimage.png") no-repeat fixed top left;}