1. 弹性盒 & 网格
  2. 弹性收缩

Quick reference

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

基本用法

¥Basic usage

收缩

¥Shrink

如果需要,使用 shrink 允许弹性项目收缩:

¥Use shrink to allow a flex item to shrink if needed:

01
02
<div class="flex ...">
  <div class="flex-none w-14 h-14 ...">
    01
  </div>
  <div class="shrink w-64 h-14 ...">
    02
  </div>
  <div class="flex-none w-14 h-14 ...">
    03
  </div>
</div>

不要收缩

¥Don’t shrink

使用 shrink-0 防止弹性项目收缩:

¥Use shrink-0 to prevent a flex item from shrinking:

01
02
<div class="flex ...">
  <div class="flex-1 h-16 ...">
    01
  </div>
  <div class="shrink-0 h-16 w-32 ...">
    02
  </div>
  <div class="flex-1 h-16 ...">
    03
  </div>
</div>

有条件地应用

悬停、聚焦和其他状态

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:shrink-0 to only apply the shrink-0 utility on hover.

<div class="shrink hover:shrink-0">
  <!-- ... -->
</div>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

断点和媒体查询

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:shrink-0 to apply the shrink-0 utility at only medium screen sizes and above.

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

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.


使用自定义值

¥Using custom values

自定义主题

¥Customizing your theme

默认情况下,Tailwind 提供两个 shrink 工具。你可以通过编辑 tailwind.config.js 文件中的 theme.flexShrinktheme.extend.flexShrink 来自定义这些值。

¥By default, Tailwind provides two shrink utilities. You can customize these values by editing theme.flexShrink or theme.extend.flexShrink in your tailwind.config.js file.

tailwind.config.js
module.exports = {
  theme: {
    extend: {
      flexShrink: {
        2: '2'
      }
    }
  }
}

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

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

任意值

¥Arbitrary values

If you need to use a one-off flex-shrink value that doesn’t make sense to include in your theme, use square brackets to generate a property on the fly using any arbitrary value.

<div class="shrink-[2]">
  <!-- ... -->
</div>

Learn more about arbitrary value support in the arbitrary values documentation.