您好我沒有得到正確的概念有關中心div在嵌套divs.Here是我的html。我想中心白色背景div。居中div與保證金:汽車不工作
<div class="div1">
<div class="img"></div>
</div>
<div class="div2">
</div>
和CSS
.div1{
width :100%;
height: 300px;
background-color: black;
position: relative;
}
.img{
width: 100px;
height: 100px;
position: absolute;
background-color : white;
display: block;
margin: auto;
bottom: 0%;
margin-bottom: -50px;
text-align: center;
}
.div2{
width :100%;
height: 300px;
background-color: #e65100;
}
我嘗試使用文本對齊到中心DIV:中心,但它不工作。 和輸出是這裏
太神奇了!有用!感謝哥們,我會做出正確的答案。 –