任何人都可以指导一下如何在灰色(父)“包装”div中水平和垂直居中这个“红色”div(div =“red”)?我希望红色div准确定位在包装div的中心(垂直和水平)。这是代码:
body {
height: 100%;
width: 100%;
background-color: rgba(255, 249, 249, 1);
margin: 0px;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
}
.wrapper {
background-color: rgba(204, 204, 204, 1);
height: 600px;
width: 100%;
margin: auto;
color: rgba(255, 255, 255, 1);
text-align: center;
font-weight: bold;
display: block;
position: relative;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
}
.red {
background-color: rgba(255, 0, 0, 1);
height: 50%;
width: 600px;
position: absolute;
font-weight: normal;
text-align: left;
/* [disabled]line-height: 100px; */
display: block;
vertical-align: top;
/* [disabled]z-index: 1; */
left: 0%;
top: 0px;
margin-top: 0px;
margin-right: auto;
margin-bottom: auto;
margin-left: auto;
right: 0px;
bottom: 0px;
}
.green {
height: 200px;
width: 200px;
position: relative;
background-color: rgba(0, 255, 0, 1);
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
display: block;
/* [disabled]z-index: -1; */
margin: 0px;
clear: none;
}
.blue {
height: 200px;
width: 200px;
position: absolute;
background-color: rgba(0, 51, 153, 1);
left: 400px;
top: 20px;
right: 0px;
bottom: 100px;
display: block;
z-index: 1;
margin: 0px;
float: left;
}
<div class="wrapper">
Test
<div class="red">Red
<div class="green">Green</div>
<div class="blue">Blue</div>
</div>
</div>
答案 0 :(得分:5)
您可以将此添加到css中的.red
:
top: 50%;
transform: translateY(-50%);
以下是一个例子:
body {
width: 100%;
background-color: rgba(255, 249, 249, 1);
margin: 0;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.wrapper {
background-color: rgba(204, 204, 204, 1);
height: 600px;
width: 100%;
color: rgba(255, 255, 255, 1);
text-align: center;
font-weight: bold;
position: relative;
}
.red {
background-color: rgba(255, 0, 0, 1);
height: 50%;
width: 600px;
position: absolute;
top: 50%;
transform: translateY(-50%);
font-weight: normal;
text-align: left;
margin: 0 auto;
left: 0;
right: 0;
}
.green {
height: 200px;
width: 200px;
background-color: rgba(0, 255, 0, 1);
}
.blue {
height: 200px;
width: 200px;
position: absolute;
background-color: rgba(0, 51, 153, 1);
top: 20px;
right: 0;
}
&#13;
<div class="wrapper">
Test
<div class="red">Red
<div class="green">Green</div>
<div class="blue">Blue</div>
</div>
</div>
&#13;
编辑:我清理了你的CSS。我删除了许多不必要的行。您可以将它们与您自己的代码进行比较。还有一个提示:如果值为0
,则不需要该类型,因此0px
,0%
,0em
或其他任何内容都可以写为{{1} }。
答案 1 :(得分:0)
为了垂直/水平居中,我建议使用flex。
您的灰色容器只需要属性,而红色容器不再需要top: 50%
,bottom: 0
等边距/位置属性......:
display: flex;
align-items: center; // Vertically center content
justify-content: center; // Horizontally center content
这是demo