你正在瀏覽的是 Tailwind CSS v2. 的技術文件
Tailwind CSS 的 GitHub

Min-Width

Utilities for setting the minimum width of an element

Default class reference

Class
屬性
min-w-0min-width: 0px;
min-w-fullmin-width: 100%;
min-w-minmin-width: min-content;
min-w-maxmin-width: max-content;

Usage

Set the minimum width of an element using the min-w-0 or min-w-full utilities.

min-w-full
<div class="w-24 min-w-full ...">
  min-w-full
</div>

Responsive

To control the min-width of an element at a specific breakpoint, add a {screen}: prefix to any existing min-width utility.

<div class="w-24 min-w-full md:min-w-0 ...">
  <!-- ... -->
</div>

For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.


Customizing

Min-width scale

Customize Tailwind’s default min-width scale in the theme.minWidth section of your tailwind.config.js file.

  // tailwind.config.js
  module.exports = {
    theme: {
      minWidth: {
+       '0': '0',
+       '1/4': '25%',
+       '1/2': '50%',
+       '3/4': '75%',
+       'full': '100%',
      }
    }
  }

Learn more about customizing the default theme in the theme customization documentation.

Variants

默認情況下, 只有 響應式 的 min-width 變化模式 (variants) 會產生。

tailwind.config.jsvariants 區塊中變更 minWidth 屬性來決定有哪些變化模式會生成。

舉個例子來說,這個設定將會生成 響應式 和 hover 的變化模式。

  // tailwind.config.js
  module.exports = {
    variants: {
      extend: {
        // ...
+       minWidth: ['responsive', 'hover'],
      }
    }
  }

Disabling

如果你不打算在專案中使用 min-width 功能,可以在你的設定檔裡的 corePlugins 屬性中將 minWidth 設定為 false 來停用功能:

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