Max-Width
Class reference
Usage
Set the maximum width of an element using the max-w-{size} utilities.
<div class="max-w-md mx-auto ...">
max-w-md
</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.
Customizing
Max-Width Scale
Customize Tailwind's default max-width scale in the theme.maxWidth section of your tailwind.config.js file.
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 max-width utilities.
You can control which variants are generated for the max-width utilities by modifying the maxWidth property in the variants section of your tailwind.config.js file.
For example, this config will also generate hover and focus variants:
Disabling
If you don't plan to use the max-width utilities in your project, you can disable them entirely by setting the maxWidth property to false in the corePlugins section of your config file: