Max-Width - Tailwind CSS
Basic usage
Setting the maximum width
Set the maximum width of an element using the max-w-* utilities.
max-w-96 max-w-80 max-w-64 max-w-48 max-w-40 max-w-32 max-w-24 <div> <div class="w-full max-w-96 ...">max-w-96</div> <div class="w-full max-w-80 ...">max-w-80</div> <div class="w-full max-w-64 ...">max-w-64</div> <div class="w-full max-w-48 ...">max-w-48</div> <div class="w-full max-w-40 ...">max-w-40</div> <div class="w-full max-w-32 ...">max-w-32</div> <div class="w-full max-w-24 ...">max-w-24</div> </div>Sizing large elements
Above 24rem, the max-w-* utilities use a named scale instead of a numeric scale to make the values easier to guess.
Andrew Alfred Assistant to the Traveling Secretary <div class="max-w-md ..."> <!-- ... --> </div>Reading width
The max-w-prose utility gives an element a max-width optimized for readability and adapts based on the font size.
text-smOh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.
text-baseOh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.
text-xlOh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.
<div class="text-sm max-w-prose ..."> <p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p> </div> <div class="text-base max-w-prose ..."> <p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p> </div> <div class="text-xl max-w-prose ..."> <p>Oh yeah. It's the best part. It's crunchy, it's explosive, it's where the muffin breaks free of the pan and sort of does it's own thing. I'll tell you. That's a million dollar idea right there. Just sell the tops.</p> </div>Constraining to your breakpoints
The max-w-screen-* classes can be used to give an element a max-width matching a specific breakpoint. These values are automatically derived from the theme.screens section of your tailwind.config.js file.
<div class="max-w-screen-2xl"> <!-- ... --> </div>Applying conditionally
Hover, focus, and other states
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:max-w-lg to only apply the max-w-lg utility on hover.
<div class="max-w-sm hover:max-w-lg"> <!-- ... --> </div>For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
Breakpoints and media queries
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:max-w-lg to apply the max-w-lg utility at only medium screen sizes and above.
<div class="max-w-sm md:max-w-lg"> <!-- ... --> </div>To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
Using custom values
Customizing your theme
By default, Tailwind’s maximum width scale is a combination of the default spacing scale as well as an additional set of named sizes for large elements exclusive to the max-w-* utilities.
You can customize values in the global spacing scale by editing theme.spacing or theme.extend.spacing in your tailwind.config.js file.
tailwind.config.jsmodule.exports={ theme:{ extend:{ spacing:{ '128':'32rem', } } } }To customize values for just the max-w-* utilities, use the theme.maxWidth section of your tailwind.config.js file.
tailwind.config.jsmodule.exports={ theme:{ extend:{ maxWidth:{ '8xl':'96rem', } } } }Note that values defined in theme.maxWidth take precedence over values defined in theme.spacing, so adding a custom value to theme.spacing that matches one of the default named sizes (like lg or xl) will not affect the corresponding max-w-* utility.
Don’t override named sizes under theme.spacing
tailwind.config.jsmodule.exports={ theme:{ extend:{ spacing:{ 'lg':'30rem', } } } }Use theme.maxWidth to override named sizes
tailwind.config.jsmodule.exports={ theme:{ extend:{ maxWidth:{ 'lg':'30rem', } } } }Arbitrary values
If you need to use a one-off max-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="max-w-[220px]"> <!-- ... --> </div>Learn more about arbitrary value support in the arbitrary values documentation.
Từ khóa » Html Col Max Width
-
How Can I Limit Table Column Width? - Stack Overflow
-
CSS Max-width Property - W3Schools
-
CSS Column-width Property - W3Schools
-
Max-width - CSS: Cascading Style Sheets - MDN Web Docs
-
Column-width - CSS: Cascading Style Sheets - MDN Web Docs
-
How To Set Fixed Width For
In A Table ? - GeeksforGeeks Max-width · WebPlatform Docs
Html – Table Columns, Setting Both Min And Max Width With Css
Grid System - Bootstrap
Column-width - CSS-Tricks
[css-tables-3] Max-width On Table Cells · Issue #2802 - GitHub
Stop Using To Set Table Width In HTML: Here's Why »
Sizing - Bootstrap
Centering Your Website Using Max Width And Auto Margins
Copyright © 2022 | Thiết Kế Truyền Hình Cáp Sông Thu