欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

flex布局水平垂直居中 有大用 有大大用

flex布局水平垂直居中

SheldonYu
0.411字数 2阅读 89,119

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;
        }

9人点赞


来自   https://www.jianshu.com/p/7baa3d4a1e9c

普通分类: