CSS flex

flex 垂直居中

1
2
3
4
.父元素{
displayflex
align-items:center
}

justify-content

1
2
3
{
justify-content: space-between; /* 均匀排列每个元素 首个元素放置于起点,末尾元素放置于终点 */
}