我想延长页面的长度,但是我不完全确定该怎么做。截至目前,我在网页上有一张图片。在图片的底部,我要放置另一个。但是,当我在代码中插入新图片时,由于级联样式表,它与现有图片重叠。

.background-pic .number-1 {
background-image:   url('../resources/images/hoth4.jpg');
background-repeat:  no-repeat;
background-size:    109%;
height: 930px;
position:           fixed;
width: 100%;
background-color:   white;
z-index:            1;
}

.background-pic .number-2 {
background-image:   url('../resources/images/hoth2.jpg');
background-repeat:  no-repeat;
background-size:    109%;
height: 930px;
position:           fixed;
width: 100%;
background-color:   white;
z-index:            1;
}

最佳答案

删除position:fixed

并添加

.background-pic [class^=number]{
     display:block;
     clear:both
}

08-25 14:24
查看更多