居中布局

2020-01-17  本文已影响0人  SuperCoderMan
.container{
width: 100%;
height: 100%;
display: flex;
align-items: center;        /* 垂直居中 */
justify-content: center;    /* 水平居中 */
}
.container div{
width: 100px;
height: 100px;
background-color: blue
}
上一篇下一篇

猜你喜欢

热点阅读