使背景固定(静止)

时间:2010-08-27 18:28:27

标签: html css layout css3

当你滚动时,是否有天空/湖泊背景保持静止?

Site

5 个答案:

答案 0 :(得分:12)

答案 1 :(得分:3)

或者简写:

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

答案 2 :(得分:0)

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

答案 3 :(得分:0)

尝试

background-attachment:fixed;

答案 4 :(得分: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>

那应该做的工作。