小程序开发实用笔记

flex布局水平垂直居中

2018-01-03  本文已影响6910人  SheldonYu

html

<div class="box">
     <section class="inner"></section>
</div>

css

    .box {
            display: flex;
            justify-content: center; /* 水平居中 */
            align-items: center;     /* 垂直居中 */
            width: 1000px;
            height: 600px;
            border: 1px solid red;
        }
        .inner {
            width: 300px;
            height: 200px;
            background-color: red;
        }
上一篇 下一篇

猜你喜欢

热点阅读