Tailwind CSS on GitHub

最小宽度

用来设置元素最小宽度的功能类

Default class reference

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

使用方法

使用 min-w-0min-w-full 功能类设置元素的最小宽度。

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

响应式

要在特定的断点处控制元素的最小宽度,请在任何现有的最小宽度功能类前添加 {screen}: 前缀。

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

关于 Tailwind 的响应式设计功能的更多信息,请查看 响应式设计 文档。


定制

Min-width scale

在您的 tailwind.config.js 文件的 theme.minWidth 部分定制 Tailwind 的默认最小宽度。

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

主题自定义文档 中了解更多关于自定义默认主题的信息。

变体

默认情况下, 针对 min-width 功能类,只生成 responsive 变体。

您可以通过修改您的 tailwind.config.js 文件中的 variants 部分中的 minWidth 属性来控制为 min-width 功能生成哪些变体。

例如,这个配置将生成 hover and focus 变体:

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

禁用

如果您不打算在您的项目中使用 min-width 功能,您可以通过在配置文件的 corePlugins 部分将 minWidth property to false in the corePlugins section of your config file:

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