我正在尝试使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%;
}
提前致谢。
答案 0 :(得分:1)
这两条规则正在推动.main
向下#centered
:
top: 20%;
transform: translateY(-50%);
删除它们会纠正重叠问题。
如果您想在.main
和页面顶部之间保留一些垂直空间,请添加一点padding-top
。