2017-06-14 87 views
2

您好我沒有得到正確的概念有關中心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:中心,但它不工作。 和輸出是這裏enter image description here

回答

3
.img { 
    ... 
    left: 0; 
    right: 0; 
} 

小提琴:https://jsfiddle.net/ep9co5g5/

+0

太神奇了!有用!感謝哥們,我會做出正確的答案。 –

2

您可以使用lefttranslateX,因爲你正在使用的位置絕對使其居中,

你需要這個CSS添加到。 img

left:50%; 
transform:translateX(-50%); 

見代碼片段:

.div1{ 
 
    width :100%; 
 
    height: 300px; 
 
    background-color: black; 
 
    position: relative; 
 
} 
 
.img{ 
 
    width: 100px; 
 
    height: 100px; 
 
    position: absolute; 
 
    background-color : white; 
 
    bottom: 0%; 
 
    margin-bottom: -50px; 
 
    left:50%; 
 
    transform:translateX(-50%); 
 

 
} 
 
.div2{ 
 
    width :100%; 
 
    height: 300px; 
 
    background-color: #e65100; 
 
}
<div class="div1"> 
 
    <div class="img"></div> 
 
</div> 
 
<div class="div2"> 
 

 
</div>

0

.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; 
 
    left:0; 
 
    right:0; 
 

 
} 
 
.div2{ 
 
    width :100%; 
 
    height: 300px; 
 
    background-color: #e65100; 
 
}
<div class="div1"> 
 
    <div class="img"></div> 
 
</div> 
 
<div class="div2"> 
 

 
</div>