背景图像未设置为全高

时间:2018-06-15 07:47:45

标签: html css

我有一个background-image,它应该占据浏览器的全部高度,也适用于移动设备。但是图像并没有占据任何浏览器或设备的全部高度。从图像末尾到窗口末尾的其余部分,背景颜色为白色:

enter image description here

这是我的css:

.full-tab-container {
 padding: 0px;   
 background-image: url(../img/Picture1.jpg);
 background-repeat: no-repeat;
 background-position: top;
 background-attachment: fixed;
 background-size: cover;

}

1 个答案:

答案 0 :(得分:0)

具有类full-tab-container的元素应该在高度:100%,所有父级也应如此。 另外,为身体设置背景是否有意义?