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

居中 子元素无固定 宽高

时间:2020-06-29 15:28:43      阅读:40      评论:0      收藏:0      [点我收藏+]

标签:back   nbsp   order   round   四种   模板   固定   padding   char   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>测试模板</title>
    <style>
        *{
            margin: 0;
            padding: 0px;
        }
        /* 第一种
        .parent{
            width: 400px;height: 200px;background: #797099;
            position: relative;
        }
        .child{
            width: 200px;height: 100px;background: #eee;
            position: absolute;
            top: 0px;          
            left: 0px;
            right: 0px;
            bottom: 0px;
            margin:auto;            
        } */
/* 
第二种
        .parent{
            width: 400px;height: 200px;background: #797099;
            display:table-cell;
            vertical-align:middle;
            
        }
        .child{
            width: 200px;
            height: 100px;
            background: #eee;    
            border:2px solid #333;
            margin: 0 auto;            
        } 

*/

    /* 第三种
    .parent{
            width: 400px;height: 200px;background: #797099;
            display:table-cell;
            vertical-align:middle;
            text-align: center;
            
        }
        .child{
            width: 200px;
            height: 100px;
            background: #eee;    
            border:2px solid #333;
            display: inline-block;        
        } */
        /*
        第四种
        .parent{
            width: 400px;height: 200px;background: #797099;
            display: flex;
            
        }
        .child{
            width: 200px;
            height: 100px;
            background: #eee;    
            border:2px solid #333;
            margin:auto    
        } */

        /*
        第五种
        .parent{
            width: 400px;height: 200px;background: #797099;
            display: flex;
            justify-content: center;           
            align-items: center;          
        }
        .child{
            width: 200px;
            height: 100px;
            background: #eee;    
            border:2px solid #333;            
        }
        */
        .parent{
            width:400px;height: 200px;background: #797099;
            position: relative;
        }
        .child{    
            width: 300px; 
            height: 100px;           
            background: #eee;    
            border:2px solid #333;

            position: absolute;
            left: 50%;  
            top: 50%;    
            transform:translate(-50%,-50%);
        }
    </style>
</head>
<body>
    <div class="parent" >
        <div class="child"></div>
    </div> 
</body>
</html>

 

居中 子元素无固定 宽高

标签:back   nbsp   order   round   四种   模板   固定   padding   char   

原文地址:https://www.cnblogs.com/jinsuo/p/13207846.html

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