點燈坊

失くすものさえない今が強くなるチャンスよ

使用 content-start 在 Cross Axis 從開始處對齊

Sam Xiao's Avatar 2021-02-28

若要使 Flex Line 對 Box 從 Cross Axis 開始處 對齊,可使用 content-start

Version

Tailwind CSS 2.0.3

content-start

start000

當 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:使用 Flexbox
  • flex-wrap:當各 item 總 width 超越 box width 時自動換列
  • content-start:各 flex line 在 box 的 cross axis 從 起始處 對齊,看起來像 垂直靠上
  • w-full:設定 box 的 width
  • h-screen:設定 box 的 height

第 3 行

<div class="w-3/12 h-1/3 m-2">1</div>

設定 item 的 style:

  • w-3/12:設定各 item 的 width
  • h-1/3:設定各 item 的 height
  • m-2:設定各 item 的 margin

Conclusion

  • items-start:設定各 item 在 cross axis 方向從 flex line 開始處對齊
  • content-start:設定各 flex line 在 cross axis 方向從 box 開始處對齊

Reference

Tailwind CSS, content-start