gpt4 book ai didi

html - 与另一个 div 重叠的 div

转载 作者:行者123 更新时间:2023-11-28 16:30:11 27 4
gpt4 key购买 nike

我试图让一个 div 正确地出现在另一个 div 的下面,而不是流入它/重叠它。我尝试了各种方法,但找不到使它正确显示的方法。这是演示:http://s1.mstclan.xyz/mstinfo

和 CSS 代码:

body,
html {
margin: 0;
height: 100%;
width: 100%;
font-family: 'Roboto Slab';
background: #262627;
color: #FFF;
text-shadow: 1px 1px 1px #000;
}
.clearfix {
clear:both;
}
.main {
position: relative;
top: 20%;
transform: translateY(-50%);
text-align: center;

#centered {
width: 350px;
height: 150px;
margin-left: auto;
margin-right: auto;
margin-top: 45px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
border: 2px solid #FFFFFF;
}

#colour {
bottom: 5%;
color: #fff;
font-family: "Roboto", Verdana, Arial, sans-serif;
font-size: 5.4em;
font-weight: 100;
position: absolute;
right: 5%;
}

提前致谢。

最佳答案

这两条规则将 .main 推到 #centered 之上:

top: 20%;
transform: translateY(-50%);

删除它们可以纠正重叠问题。

如果你想在 .main 和页面顶部之间保持一些垂直空间,添加一点 padding-top

关于html - 与另一个 div 重叠的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35419745/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com