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

div 水平垂直居中

时间:2017-09-18 19:48:53      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:enter   布局   position   logs   lex   containe   content   orm   contain   

已知布局为如下:

<div id="container">
    <p>test</p>
    <div id="center">12345</div>
</div>

不知道宽和高的情况下:

方法一:

#container{
            position:relative;
            background:blue;
        }
        #center{
            background:red;
            position:absolute;
            left:50%;
            top:50%;
            transform:translate(-50%,-50%);   //translate 是基于元素自身的尺寸来计算的
        }

方法二:

<div id="container">
    <!--<p>test</p>-->
    <div id="center">12345</div>
</div>

        #container{
            display:flex;
            align-items: center;
            justify-content: center;
            background:blue;
        }
        #center{
            background:red;
        }  

固定宽和高

 

        #container{
            position:relative;
            width:300px;
            height:300px;
            background:blue;
        }
        #center{
            width:100px;
            height:100px;
            background:red;
            position:absolute;
            left:50%;
            top:50%;
            margin-top:-50px;
            margin-left:-50px;
        }

方法二

        #container{
            position:relative;
            width:300px;
            height:300px;
            background:blue;
        }
        #center{
            width:100px;
            height:100px;
            background:red;
            position:absolute;
            margin:auto;
            left:0;
            top:0;
            right:0;
            bottom:0;
        }

  

div 水平垂直居中

标签:enter   布局   position   logs   lex   containe   content   orm   contain   

原文地址:http://www.cnblogs.com/ycbeginner/p/7544225.html

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