點燈坊

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

使用 order-last 最後顯示

Sam Xiao's Avatar 2021-03-05

若要將特定子層 item 最後顯示,可直接使用 order-last 改變。

Version

Tailwind CSS 2.0.3

order-last

last000

雖然原 HTML 是 123,但想將 1 最後顯示。

<template>
  <div class="flex w-full h-28">
    <div class="w-14 h-14 m-2 order-last">1</div>
    <div class="w-14 h-14 m-2">2</div>
    <div class="w-14 h-14 m-2">3</div>
  </div>
</template>

第 2 行

<div class="flex w-full h-28">

設定父層 box style:

  • flex:設定子層 item 使用 Flexbox
  • w-full:設定父層 box width
  • h-28:設定父層 box height

第 4 行

<div class="w-14 h-14 m-2">2</div>

設定子層 item style:

  • w-14:設定子層 item width
  • h-14:設定子層 item height
  • m-2:設定子層 item margin

第 3 行

<div class="w-14 h-14 m-2 order-last">1</div>

設定 item 1 style:

  • order-last:設定 item 1 最後顯示

Conclusion

  • order-last 是設定在子層 item
  • order-last 可直接將特定子層 item 最後顯示,非常方便

Reference

Tailwind CSS, order