Tailwind CSS Flex Shrink

2022-08-08 10:08 更新

Flex Shrink

控制 flex 項目縮小的功能類

Class
Properties
flex-shrink-0 flex-shrink: 0;
flex-shrink flex-shrink: 1;

Shrink

使用 ?flex-shrink? 允許一個 flex 項目在必要的時候縮?。?/p>


<div class="flex ...">
  <div class="flex-grow w-16 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
  <div class="flex-shrink w-64 h-16 ...">
    <!-- This item will shrink -->
  </div>
  <div class="flex-grow w-16 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
</div>

Don't shrink

使用 ?flex-shrink-0? 阻止一個 flex 項目縮小:


<div class="flex ...">
  <div class="flex-1 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
  <div class="flex-shrink-0 h-16 w-32 ...">
    <!-- This item will not shrink below its initial size-->
  </div>
  <div class="flex-1 h-16 ...">
    <!-- This item will grow or shrink as needed -->
  </div>
</div>

響應(yīng)式

要控制 flex 項目在特定斷點處的縮小方式,請在任何現(xiàn)有的功能類前添加 ?{screen}:? 前綴。例如,使用 ?md:flex-shrink-0? 僅在中等及以上尺寸屏幕上應(yīng)用 ?flex-shrink-0? 功能。

<div class="flex ...">
  <!-- ... -->
  <div class="flex-shrink md:flex-shrink-0 ...">
    Responsive flex item
  </div>
  <!-- ... -->
</div>

關(guān)于 Tailwind 的響應(yīng)式設(shè)計功能的更多信息,請查看 響應(yīng)式設(shè)計 文檔。

自定義

Shrink Values

默認(rèn)情況下,Tailwind 提供了兩個 ?flex-shrink? 實用程序。您可以通過編輯 Tailwind 配置的 ?theme.flexShrink? 部分來更改、添加或刪除這些內(nèi)容。

  // tailwind.config.js
  module.exports = {
    theme: {
      flexShrink: {
        '0': 0,
       DEFAULT: 1,
       DEFAULT: 2,
       '1': 1,
      }
    }
  }

變體

默認(rèn)情況下, 針對 flex shrink 功能類,只生成 responsive 變體。

您可以通過修改您的 ?tailwind.config.js? 文件中的 ?variants ?部分中的 ?flexShrink ?屬性來控制為 flex shrink 功能生成哪些變體。

例如,這個配置也將生成 hover and focus 變體:

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
       flexShrink: ['hover', 'focus'],
      }
    }
  }

禁用

如果您不打算在您的項目中使用 flex shrink 功能,您可以通過在配置文件的 ?corePlugins ?部分將 ?flexShrink ?屬性設(shè)置為? false? 來完全禁用它們:

  // tailwind.config.js
  module.exports = {
    corePlugins: {
      // ...
     flexShrink: false,
    }
  }


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號