.flex { display: flex; }
.flex-full { flex: 1; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.flex-center { align-items: center; justify-content: center; }
.flex-around { justify-content: space-around; }
.flex-between { justify-content: space-between; }
.flex-start { justify-content: flex-start; }
.flex-end { justify-content: flex-end; }
标签:flex,direction,center,布局,content,display,justify
From: https://www.cnblogs.com/qoon-f/p/17326586.html