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

元素居中的六种方法

时间:2019-08-08 09:12:11      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:scale   cal   position   表格   ice   init   ati   enter   war   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        .box{
            width: 500px;
            height: 500px;
            border: 2px solid red;
            /* 第二种方法  */
            /* display: flex; 
            justify-content: center;
            align-items: center;*/
             /* 将主轴方向扭转 */
             /* flex-direction: column; */
            /* 多余部分是否换行 */
            /* flex-wrap: nowrap; */
            /* flex-direction  与 flex-warp  简写形式   */
            /* flex-flow: column nowrap; */
            /* 第三种方法 */
            /* position: relative; */
            /* 第四种  */
            /* text-align: center; */
            /* 第五种方法  */
            /* position: relative; */
            /* 第六种 方法 使用表格 */
            /* display: table-cell;
            vertical-align: middle; */
        }
        .div{
            width: 200px;
            height: 200px;
            background-color: aqua;

            /*第一种 元素居中 */
            /* margin: 150px auto; */
            /* 第三种  使用定位 */
            /* position: absolute;
            top:150px;
            left: 150px; */
            /* 第四种 将子元素 转为行内块元素 在 用text-align:center;*/
            /* display: inline-block; */
            /* 第五种 子元素 加定位 0px 再加 margin :auto; */
            /* position: absolute;
            top: 0px;
            left: 0px;
            bottom: 0px;
            right: 0px;
            margin: auto; */
            /* 第六种方法  */
            /* margin: 0 auto; */

        }
    </style>
</head>
<body>
    <div class="box">
        <div class="div"></div>
    </div>
</body>
</html>

  

元素居中的六种方法

标签:scale   cal   position   表格   ice   init   ati   enter   war   

原文地址:https://www.cnblogs.com/GreenRadish/p/11319134.html

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