我一直在尝试获得整页背景图片。我怎么能得到这个背景图像来占用页面的高度而不必滚动?
#cover {
background: url(http://bootstrapguru.com/preview/cascade/images/carousel/imageOne.jpg) no-repeat center center fixed;
background-size: cover;
height:100%;
}
目前100%加上固定高度使它太高了。
答案 0 :(得分:2)
为#cover
提供固定的位置和流畅的尺寸:
#cover {
background: url(http://bootstrapguru.com/preview/cascade/images/carousel/imageOne.jpg) no-repeat center center fixed;
background-size: cover;
height:100%;
width: 100%;
position:fixed;
}
答案 1 :(得分:1)
你可以为身体做样式:
body {
background: url(http://bootstrapguru.com/preview/cascade/images/carousel/imageOne.jpg) no-repeat center center fixed;
background-size: cover;
}
<强> Working Demo 强>
更新,没有样式正文
#cover {
background: url(http://bootstrapguru.com/preview/cascade/images/carousel/imageOne.jpg) no-repeat center center fixed;
background-size: cover;
height:100%;
position:fixed;
width: 100%;
}
<强> Working Demo 强>