居中布局(水平+垂直)
Posted qjb2404
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了居中布局(水平+垂直)相关的知识,希望对你有一定的参考价值。
<div class="parent"> <div class="child"></div> </div>
方案一:table + margin实现水平居中,table-cell + vertical-align实现垂直居中
.parent{ width:1000px; height:500px; background:#ccc; display:table-cell; vertical-align:middle; } .child{ width:200px; height:200px; background:#c9394a; display:table; /*block*/ margin:0 auto; }
方案二:absolute + transform
.parent{ width:1000px; height:500px; background:#ccc; position:relative; } .child{ width:200px; height:200px; background:#c9394a; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
以上是关于居中布局(水平+垂直)的主要内容,如果未能解决你的问题,请参考以下文章