目錄
彈性布局學習-介紹(一)
彈性布局學習-詳解 flex-direction【決定主軸的方向】(二)
彈性布局學習-詳解 justify-content(三)
彈性布局學習-詳解 align-items(四)
彈性布局學習-詳解flex-wrap(五)
flex-direction
row
section ul { display: flex; flex-direction: row; } section li { width: 200px; height: 200px; text-align: center; line-height: 200px; margin: 10px; background-color: pink; list-style:none; }
column
section ul { display: flex; flex-direction: column; } section li { width: 200px; height: 200px; text-align: center; line-height: 200px; margin: 10px; background-color: pink; list-style:none; }
row-reverse
section ul { display: flex; flex-direction: row-reverse; } section li { width: 200px; height: 200px; text-align: center; line-height: 200px; margin: 10px; background-color: pink; list-style:none; }
column-reverse
section ul { display: flex; flex-direction: column-reverse; } section li { width: 200px; height: 200px; text-align: center; line-height: 200px; margin: 10px; background-color: pink; list-style:none; }