flex的居中显示

来源:互联网 发布:中国海洋大学网络登录 编辑:程序博客网 时间:2024/06/04 20:14
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>flex的居中显示</title>    <STYLE>        #DIV1{            width: 200px;            height: 200px;            background-color: red;            display: flex;            justify-content:center;            align-items: center;        }        #DIV2{            width: 100px;            height: 100px;            background-color: yellow;        }    </STYLE></head><body><div ID="DIV1">    <div ID="DIV2"></div></div></body></html>
0 0