码迷,mamicode.com
首页 > Web开发 > 详细

css样式之垂直居中

时间:2018-09-15 11:30:47      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   pre   margin   垂直   item   position   color   osi   translate   

1.div的水平居中

margin:0 auto

2.table-cell实现垂直居中

样式:.box{
            width: 200px;
            height: 200px;
            background: red;
        }
        .box1{
            display: table-cell;
            vertical-align: middle;
            text-align: center;
        }
html结构:<div class="box box1">
    <span>垂直居中</span>
</div>

3.display:flex布局的方式

css样式:.box1{
            display: flex;
            justify-content:center;
            align-items:Center;
        }

4.知道div高度和宽度的垂直居中

1.使用绝对定位,高50%,宽50%

2.然后再margin-left div宽度的一半  margin-top div高度的一半

 

5.不知道div高度和宽度的垂直居中

position: absolute;
top: 50%;
left: 50%;
transform: translate("-50%","-50%");

 

css样式之垂直居中

标签:style   pre   margin   垂直   item   position   color   osi   translate   

原文地址:https://www.cnblogs.com/wangdahua/p/9650267.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!