在这里寻找一些解决方案之后,似乎每个人都有我面临的相反问题(哈!)。这就是我想要完成的事情:我有一个页面加载时的 DIV 为 100% 宽度和 100% 高度。这样无论屏幕大小如何,我们总能获得完整的主页图像。但是,我们希望能够在其下方滚动以获取其他内容。我正处于一个我已经操纵它工作的地步,但它有问题。这是 HTML ::
<div id="ScalableImage"></div>
<div id="BlockWhite" style="height:1000px"></div>
<div id="BlockBlue1" style="height:300px"></div>
<div id="BlockBlue2" style="height:50px"></div>
您可以在此处看到“BlockWhite”的样式设置为 1000 像素高。那是因为它隐藏在“ScalableImage”后面。我不能让它在下面筑巢!!!
无论如何,这是 ScalableImage 和色块的 CSS ::
#ScalableImage {
position: absolute;
display:block;
top:0;
left:0;
width:100%;
height:100%;
max-height:900px;
background: url(/TESTING/images/Home_Slide_001.jpg) no-repeat center top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
z-index:700;
}
#BlockBlue1 {
position:relative;
float:left;
background-color:#c5d1d1;
width:110%;
margin-left:-10px;
margin-bottom:-10px;
min-height:20px;
clear:both;
}
#BlockBlue2 {
position:relative;
float:left;
background-color:#95aab2;
width:110%;
min-height:20px;
margin-left:-10px;
margin-bottom:-10px;
clear:both;
}
#BlockWhite {
position:relative;
float:left;
background-color: #fff;
width:110%;
min-height:20px;
margin-left:-10px;
margin-bottom:-10px;
clear:both;
}
想法?
谢谢!