.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布局
最新推荐文章于 2024-11-01 16:54:21 发布