若要使 Flex Line 對 Box 從 Cross Axis 開始處
對齊,可使用 content-start
。
Version
Tailwind CSS 2.0.3
content-start
當 Flexbox 換列時,紅色部分為其內部 flex line,content-start
會使 flex line 在 cross axis 的 起始處
對齊,因此看起來像 垂直靠上
。
<template>
<div class="flex flex-wrap content-start w-full h-screen">
<div class="w-3/12 h-1/3 m-2">1</div>
<div class="w-3/12 h-1/3 m-2">2</div>
<div class="w-3/12 h-1/3 m-2">3</div>
<div class="w-3/12 h-1/3 m-2">4</div>
<div class="w-3/12 h-1/3 m-2">5</div>
</div>
</template>
第 2 行
<div class="flex flex-wrap content-start w-full h-screen">
設定 box 的 style:
flex
:使用 Flexboxflex-wrap
:當各 item 總 width 超越 box width 時自動換列content-start
:各 flex line 在 box 的 cross axis 從起始處
對齊,看起來像垂直靠上
w-full
:設定 box 的 widthh-screen
:設定 box 的 height
第 3 行
<div class="w-3/12 h-1/3 m-2">1</div>
設定 item 的 style:
w-3/12
:設定各 item 的 widthh-1/3
:設定各 item 的 heightm-2
:設定各 item 的 margin
Conclusion
items-start
:設定各 item 在 cross axis 方向從 flex line 開始處對齊content-start
:設定各 flex line 在 cross axis 方向從 box 開始處對齊