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

css实现垂直水平居中的5种方法

时间:2017-12-17 14:15:15      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:利用   round   att   source   居中   绝对定位   ble   ali   translate   

css实现垂直水平居中的5种方法

  1. 给父元素设置table-cell,text-align,vertical-align
#big{
        width: 200px;
        height: 200px;
        border:1px solid #000;
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }
    #small{
        display: inline-block;
        width: 50px;
        height: 50px;
        background: yellow;
        vertical-align:middle;
    }
  1. 给子元素设置margin:auto
#big{
        width: 200px;
        height: 200px;
        border:1px solid #000;
        position: relative;
    }
    #small{
        display: inline-block;
        width: 50px;
        height: 50px;
        background: yellow;
        position: absolute;
        left:0;
        right:0;
        top:0;
        bottom:0;
        margin:auto;
    }
  1. 弹性盒
#big{
        width: 200px;
        height: 200px;
        border:1px solid #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #small{
        display: inline-block;
        width: 50px;
        height: 50px;
        background: yellow;
    }
  1. 利用translate实现,先进行绝对定位,然后通过translate让它自身往回移动50%
#big{
        width: 200px;
        height: 200px;
        border:1px solid #000;
        position: relative;
    }
    #small{
        display: inline-block;
        width: 50px;
        height: 50px;
        background: yellow;
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%,-50%);
    }
  1. 通过新创建一个元素,设置高为父元素的高,让div以这个元素来执行vertical-align
#big{
        width: 200px;
        height: 200px;
        border:1px solid #000;
        text-align: center;
    }
    #small{
        display: inline-block;
        width: 50px;
        height: 50px;
        background: yellow;
        vertical-align: middle;
    }
    span{
        display: inline-block;
        width: 0;
        height: 100%;
        background: red;
        vertical-align: middle; 
    }
    </style>
</head>
<body>
    <div id="big">
        <div id="small">
        </div>
        <span></span>
    </div>
</body>

css实现垂直水平居中的5种方法

标签:利用   round   att   source   居中   绝对定位   ble   ali   translate   

原文地址:http://www.cnblogs.com/twoeggg/p/8051840.html

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