fxxqq / 6fedcom.github.io

frank的前端养成记(hexo博客)
https://6fed.com
22 stars 5 forks source link

flex水平垂直居中 #96

Open fxxqq opened 6 years ago

fxxqq commented 6 years ago
.box {
    display: flex;
    align-items: center;/*垂直居中*/
    justify-content: center;/*水平居中*/
}