1. 程式人生 > >css 最簡單的垂直居中

css 最簡單的垂直居中

-c 彈性布局 content gdi 垂直 body play justify gpo

利用彈性布局進行垂直居中,要垂直的元素如果很多,可以用一個大的div包裹,然後

bigDiv {

display: flex;

justify-content: center; //水平居中

align-items: center; //垂直居中

}

css 最簡單的垂直居中