码迷,mamicode.com
首页 > 其他好文 > 详细

水平垂直居中的——万能好用方法

时间:2017-06-04 22:38:14      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:lex   ati   image   ack   ges   justify   http   ott   tom   

一、absolute方法

HTML代码如下:

<body>
        <div id="box">
            <div class="circle left"></div>
            <div class="circle right"></div>
        </div>
</body>

css如下:

#box{
            width: 400px;
            height: 200px;
            background: #ccc;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            overflow: hidden;
        }

box是子元素,box相对于body垂直水平居中,只要在box添加以上代码就可以了

 

 

二、display:flex

css如下:

body{
    height: 100vh;
    display: flex;
     justify-content: center;
     align-items: center;   

}
        
#box{
    width: 400px;
    height: 200px;
    background: #ccc;
        position: relative;
}    

在父元素上加以上代码就可以使元素自适应的居中

 

效果

技术分享

水平垂直居中的——万能好用方法

标签:lex   ati   image   ack   ges   justify   http   ott   tom   

原文地址:http://www.cnblogs.com/feilu2016/p/6941838.html

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