Флексбокс и Сетка
Утилиты для управления сжатием flex-элементов.
Используйте shrink
, чтобы позволить гибкому элементу сжиматься при необходимости:
<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>
Используйте shrink-0
, чтобы предотвратить сжатие гибкого элемента:
<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.
По умолчанию Tailwind предоставляет два shrink
. Вы можете настроить эти значения, отредактировав theme.flexShrink
или theme.extend.flexShrink
в вашем файле tailwind.config.js
.
module.exports = {
theme: {
extend: {
flexShrink: {
'2': 2
}
}
}
}
Дополнительные сведения о настройке темы по умолчанию смотрите в документации настройка темы.
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.