Min-Width

Utilities for setting the minimum width of an element

Class reference

Class Properties
.min-w-0 min-width: 0;
.min-w-full min-width: 100%;

Usage

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

Min-Width - 图1


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


Responsive

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

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

Min-Width - 图2

all

Min-Width - 图3

sm

Min-Width - 图4

md

Min-Width - 图5

lg

Min-Width - 图6

xl


1. <div class="w-24 min-w-0 sm:min-w-full md:min-w-0 lg:min-w-full xl:min-w-0 ...">
2. Target
3. </div>

Target


Customizing

Min-width scale

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


1. // tailwind.config.js
2. module.exports = {
3. theme: {
4. minWidth: {
5. +       '0': '0',
6. +       '1/4': '25%',
7. +       '1/2': '50%',
8. +       '3/4': '75%',
9. +       'full': '100%',
10. }
11. }
12. }

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

Responsive and pseudo-class variants

By default, only responsive variants are generated for min-width utilities.

You can control which variants are generated for the min-width utilities by modifying the minWidth property in the variants section of your tailwind.config.js file.

For example, this config will also generate hover and focus variants:


1. // tailwind.config.js
2. module.exports = {
3. variants: {
4. // ...
5. -     minWidth: ['responsive'],
6. +     minWidth: ['responsive', 'hover', 'focus'],
7. }
8. }

Disabling

If you don’t plan to use the min-width utilities in your project, you can disable them entirely by setting the minWidth property to false in the corePlugins section of your config file:


1. // tailwind.config.js
2. module.exports = {
3. corePlugins: {
4. // ...
5. +     minWidth: false,
6. }
7. }


← Width   Max-Width →