W3cubDocs

/Tailwind CSS

max-width

Utilities for setting the maximum width of an element.

Class Styles
max-w-<number>
max-width: calc(var(--spacing) * <number>);
max-w-<fraction>
max-width: calc(<fraction> * 100%);
max-w-3xs
max-width: var(--container-3xs); /* 16rem (256px) */
max-w-2xs
max-width: var(--container-2xs); /* 18rem (288px) */
max-w-xs
max-width: var(--container-xs); /* 20rem (320px) */
max-w-sm
max-width: var(--container-sm); /* 24rem (384px) */
max-w-md
max-width: var(--container-md); /* 28rem (448px) */
max-w-lg
max-width: var(--container-lg); /* 32rem (512px) */
max-w-xl
max-width: var(--container-xl); /* 36rem (576px) */
max-w-2xl
max-width: var(--container-2xl); /* 42rem (672px) */

Examples

Basic example

Use max-w-<number> utilities like max-w-24 and max-w-64 to set an element to a fixed maximum width based on the spacing scale:

Using a percentage

Use max-w-full or max-w-<fraction> utilities like max-w-1/2 and max-w-2/5 to give an element a percentage-based maximum width:

Using the container scale

Use utilities like max-w-sm and max-w-xl to set an element to a fixed maximum width based on the container scale:

Using breakpoints container

Use the container utility to set the maximum width of an element to match the min-width of the current breakpoint. This is useful if you'd prefer to design for a fixed set of screen sizes instead of trying to accommodate a fully fluid viewport:

<div class="container">
  <!-- ... -->
</div>

Note that unlike containers you might have used in other frameworks, Tailwind's container does not center itself automatically and does not have any built-in horizontal padding. Use mx-auto and the px-<number> utilities to add these:

<div class="container mx-auto px-4">
  <!-- ... -->
</div>

Using a custom value

Use the max-w-[<value>] syntax to set the maximum width based on a completely custom value:

<div class="max-w-[220px] ...">
  <!-- ... -->
</div>

For CSS variables, you can also use the max-w-(<custom-property>) syntax:

<div class="max-w-(--my-max-width) ...">
  <!-- ... -->
</div>

This is just a shorthand for max-w-[var(<custom-property>)] that adds the var() function for you automatically.

Responsive design

Prefix a max-width utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

<div class="max-w-sm md:max-w-lg ...">
  <!-- ... -->
</div>

Learn more about using variants in the variants documentation.

Customizing your theme

The max-w-<number> utilities are driven by the --spacing theme variable, which can be customized in your own theme:

@theme {
  --spacing: 1px; 
}

Learn more about customizing the spacing scale in the theme variable documentation.