这是我正在做的事情的一个例子。 http://www.childrens2012.org/
无论大小如何,都会填满整个屏幕的背景图像/颜色,但是当您向下滚动时,您会看到更多内容。
我让它为颜色工作
#tester{
width:100%;
height:100%;
background-color: blue;}
但是,当我厌倦了使用背景图像时,如果我将其放置在绝对位置,则会遇到麻烦,然后出现下面的内容并且它似乎不起作用。
这是我得到的
width:100%;
height:100%;
background: url(../images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position:absolute;
有任何想法吗?