<div id="progressbarr">
当我使用 margin-top :50% 时,它仍然没有很好地包裹在它的祖先 div 中,并期望它将水平放置在中间。
HTML 框
css
#col3wrap{
height: 50px;
background: #DDD;
}
.profilepic {
width: 50px;
height: 50px;
background: red;
float: left;
margin: 0 10px 0 0;
}
#progressbarr {
float: left;
width: 300px;
height: 20px;
background: #eee;
margin: 50% 0 0 0;
}
#progressbarr > div {
background-color: green;
width: 40%;
height: 20px;
}