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

元素水平垂直居中的几种常用方法

时间:2018-04-06 10:54:02      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:position   osi   form   doc   tom   play   div   splay   span   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>元素水平垂直居中</title>
        <style>
            /*方式一*/
            .box{
                width: 100px;
                height: 100px;
                background: red;
                position: absolute;
                top: 50%;
                left: 50%;
                margin-left: -50px;
                margin-top: -50px;
            }
            /*方式二*/
            .box{
                width: 100px;
                height: 100px;
                background: red;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50px,-50px);
                /*或者transform: translate(-50%,-50%);*/
            }
            /*方式三  技巧*/
            .box{
                width: 100px;
                height: 100px;
                background: red;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin:auto;
            }
            /*方式四  弹性盒*/
            .father{
                display: flex;
                width: 400px;
                height: 400px;
                background: red;
                justify-content: center;
                align-items: center;
            }
            .son{
                width: 100px;
                height: 100px;
                background: aqua;
            }
        </style>
    </head>
    <body>
        <div class="box">我需要用多种方式居中你</div>
        <div class="father">
            <div class="son"></div>
        </div>
    </body>
</html>

 

元素水平垂直居中的几种常用方法

标签:position   osi   form   doc   tom   play   div   splay   span   

原文地址:https://www.cnblogs.com/lhl66/p/8724939.html

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