Sizing
Utilities for setting the minimum width of an element.
Set the minimum width of an element using min-w-*
utilities.
<div class="w-96 ...">
<div class="min-w-80 ...">min-w-80</div>
<div class="min-w-64 ...">min-w-64</div>
<div class="min-w-48 ...">min-w-48</div>
<div class="min-w-40 ...">min-w-40</div>
<div class="min-w-32 ...">min-w-32</div>
<div class="min-w-24 ...">min-w-24</div>
<div class="min-w-full ...">min-w-full</div>
</div>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:min-w-0
to only apply the min-w-0
utility on hover.
<div class="w-24 min-w-full hover:min-w-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:min-w-0
to apply the min-w-0
utility at only medium screen sizes and above.
<div class="w-24 min-w-full md:min-w-0">
<!-- ... -->
</div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
By default, Tailwind’s minimum width scale is a combination of the default spacing scale as well as some additional values specific to widths.
You can customize your spacing scale by editing theme.spacing
or theme.extend.spacing
in your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
spacing: {
'128': '32rem',
}
}
}
}
To customize min-width
separately, use the theme.minWidth
section of your tailwind.config.js
file.
module.exports = {
theme: {
extend: {
minWidth: {
'128': '32rem',
}
}
}
}
Learn more about customizing the default theme in the theme customization documentation.
If you need to use a one-off min-width
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="min-w-[220px]">
<!-- ... -->
</div>
Learn more about arbitrary value support in the arbitrary values documentation.