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

css水平垂直居中

时间:2018-07-13 14:02:09      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:style   round   play   color   元素   height   content   doctype   enter   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <style>
        #super{
            width: 200px;
            height: 200px;
            background: red;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        #sub{
            width: 100px;
            height: 100px;
            background: blue;
        }
    </style>
    <body>
        <div id="super">
            <div id="sub"></div>
        </div>
    </body>
</html>

只要在父元素放上display:flex(flex布局)

align-items:center 垂直居中

justify-content:center 垂直居中

欢迎进群:822162679  

 

css水平垂直居中

标签:style   round   play   color   元素   height   content   doctype   enter   

原文地址:https://www.cnblogs.com/GeekXwj/p/9304504.html

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