CSS子元素居中(父元素寬高已知,子元素未知)

主機筆記發表於2016-08-13
<style>
.container{width:400px; height:400px; position:relative;}
.center{position:absolute; left:0; top:0; bottom:0; right:0; margin:auto; 
         width:50px; height:50px;  //寬高可以不寫
}
</style>
<div class="container">
  <div class="center"></center>
</div>

父元素高度已知,子元素寬高未知,  水平垂直居中很好用


相關文章