我能够使div
窗口大小 AKA 填满屏幕。现在我想知道其余部分如何不相互重叠,所以我可以按顺序滚动浏览它们,同时在每个 div 中保留居中的文本?现在,它只显示第 3 件事。
我想要达到的目标:
这是带注释的CSS:
/* Each of the divs and their independent backgrounds */
#thing1 {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1000;
background: blue;
}
#thing2 {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1000;
background: red;
}
#thing3 {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1000;
background: green;
}
/* Centering the text */
#text {
width: 100px;
height: 100px;
margin: auto;
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
}