居中布局(水平+垂直)

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%);
}

 

以上是关于居中布局(水平+垂直)的主要内容,如果未能解决你的问题,请参考以下文章

android 水平布局中怎么设置个垂直布局的控件

垂直居中,水平居中,垂直+水平居中,圣杯和双飞翼布局

css实现水平/垂直居中效果

居中布局(水平+垂直)

前端面试题前端布局问题

布局-水平垂直居中