子元素在父元素里水平居中

来源:互联网 发布:光伏数据采集器品牌 编辑:程序博客网 时间:2024/04/30 22:16
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="author" content="http://www.softwhy.com/" />
    <style type="text/css">
        div{
            width:200px;
            height:200px;
            background-color:green;
            text-align: center;
        }
        #children{
            display: inline-block;
            width:100px;
            height:100px;
            background-color:red;
        }
    </style>
</head>
<body>
<div style="text-align:center;">
    <div id="children"></div>
</div>
</body>
</html>
0 0
原创粉丝点击