#first {
position: relative;
width: 20%;
height: 20%;
border-radius: 50%;
background-color: #94b8b8;
}
#second {
position: absolute;
width: 15%;
height: 15%;
border-radius: 50%;
background-color: blue;
}
<html>
<body>
<div id="first">
<div id="second">
</div>
</div>
</body>
</html>
如何得到它,我想在第一個div的正中心的第二個div,但它甚至不可見。如何在不使用左側頂部屬性的情況下實現此目的 注意:我想對齊它只使用CSS但不使用標記。
的[水平居中一個div在一個div]可能的複製(http://stackoverflow.com/questions/114543/horizontally-center-a-div-in-a-div) –
請提供小提琴鏈接plz –