Overview
min-w-* uses the same suffixes as width so you can set a floor without switching naming systems.
| Class | Value | Usage |
|---|---|---|
.min-w-full | 100% | Match the full parent width as a floor |
.min-w-auto | auto | Let the browser calculate the minimum width |
.min-w-px | 1px | Keep a hairline minimum present |
.min-w-3xs | 16rem / 256px | Small card floor |
.min-w-2xs | 18rem / 288px | Compact panel floor |
.min-w-xs | 20rem / 320px | Small content block floor |
.min-w-sm | 24rem / 384px | Sidebar floor |
.min-w-md | 28rem / 448px | Reading panel floor |
.min-w-lg | 32rem / 512px | Standard feature floor |
.min-w-xl | 36rem / 576px | Wide card floor |
.min-w-2xl | 42rem / 672px | Medium content rail floor |
.min-w-3xl | 48rem / 768px | Container floor |
.min-w-4xl | 56rem / 896px | Large shell floor |
.min-w-5xl | 64rem / 1024px | Wide shell floor |
.min-w-6xl | 72rem / 1152px | Extra-wide shell floor |
.min-w-7xl | 80rem / 1280px | Largest shipped floor |
Fractional min-widths
| Class | Value | CSS | Usage |
|---|---|---|---|
.min-w-1-2 | 50% | min-width: 50%; | Half-width floor |
.min-w-1-3 | 33.333% | min-width: 33.333%; | Third-width floor |
.min-w-2-3 | 66.666% | min-width: 66.666%; | Two-thirds floor |
.min-w-1-4 | 25% | min-width: 25%; | Quarter-width floor |
.min-w-3-4 | 75% | min-width: 75%; | Three-quarters floor |
min-w-1-2 stops a flex child from shrinking below half the parent width, which keeps two-up rows readable once they wrap.
Two-thirds main column
Prevent a sidebar from collapsing
Keep small cards readable
| Example class | Typical use |
|---|---|
.min-w-sidebar | Sidebars that must not collapse below a readable width |
.min-w-card | Card grids with a floor width before wrap |
.min-w-field | Form controls and inputs |
Best Practices
- Use
.min-w-3xs….min-w-7xl, fractions, or.min-w-pxwhen you want a floor that matches the Width table. - Use
min-widthonly when content becomes unusable below a threshold. - Pair custom min-width helpers with width or max-width utilities instead of replacing the bundled sizing system.
- Test wrapped flex layouts carefully so a minimum width does not force unintended horizontal overflow.
- Prefer a few semantic custom classes over a large one-off min-width scale.
Related Utilities
Width
Bundled width utilities
Max Width
Constrain maximum size alongside minimum width
Custom CSS
Import your own utilities through Skelementor
Sizing
All sizing utilities overview

