我有一个网页,里面有几个可折叠的div,就是当我不止一次打开时,我身上的背景图像的高度被打破了,在页面的末尾,我得到一个黑色的背景,背景并不涵盖整个页面。
我该怎么办?
此致
对于我在CSS上的身体,我使用它:
body {
background-image: url(../img/fondo_pantalla_bandadelcarmen_mar.jpg) !important;
background-position:center center !important;
background-repeat:no-repeat !important;
-webkit-background-size: cover !important;
-moz-background-size: cover !important;
-o-background-size: cover !important;
background-size: cover !important;
}
答案 0 :(得分:1)
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;
有关详细信息,请参阅This