flex布局水平垂直居中

html

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

你可能感兴趣的:(flex布局水平垂直居中)