- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Selectors
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Border Block
- CSS - Border Inline
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursor
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS - Inline Block
- CSS - Dropdowns
- CSS - Visibility
- CSS - Overflow
- CSS - Clearfix
- CSS - Float
- CSS - Arrows
- CSS - Resize
- CSS - Quotes
- CSS - Order
- CSS - Position
- CSS - Hyphens
- CSS - Hover
- CSS - Display
- CSS - Focus
- CSS - Zoom
- CSS - Translate
- CSS - Height
- CSS - Hyphenate Character
- CSS - Width
- CSS - Opacity
- CSS - Z-Index
- CSS - Bottom
- CSS - Navbar
- CSS - Overlay
- CSS - Forms
- CSS - Align
- CSS - Icons
- CSS - Image Gallery
- CSS - Comments
- CSS - Loaders
- CSS - Attr Selectors
- CSS - Combinators
- CSS - Root
- CSS - Box Model
- CSS - Counters
- CSS - Clip
- CSS - Writing Mode
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - Pointer Events
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS Advanced
- CSS - Grid
- CSS - Grid Layout
- CSS - Flexbox
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Paged Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS - Image Sprites
- CSS - Important
- CSS - Data Types
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS - Rounded Corner
- CSS - Border Images
- CSS - Multi Background
- CSS - Color
- CSS - Gradients
- CSS - Box Shadow
- CSS - Box Decoration Break
- CSS - Caret Color
- CSS - Text Shadow
- CSS - Text
- CSS - 2d transform
- CSS - 3d transform
- CSS - Transition
- CSS - Animation
- CSS - Multi columns
- CSS - Box Sizing
- CSS - Tooltips
- CSS - Buttons
- CSS - Pagination
- CSS - Variables
- CSS - Media Queries
- CSS - Functions
- CSS - Math Functions
- CSS - Masking
- CSS - Shapes
- CSS - Style Images
- CSS - Specificity
- CSS - Custom Properties
- CSS Responsive
- CSS RWD - Introduction
- CSS RWD - Viewport
- CSS RWD - Grid View
- CSS RWD - Media Queries
- CSS RWD - Images
- CSS RWD - Videos
- CSS RWD - Frameworks
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS - max-inline-size Property
CSS max-inline-size property specifies the maximum horizontal or vertical size of an element's block, determined by its writing mode and equivalent to either max-height and max-width based on the writing mode value.
The max-inline-size property sets the maximum width for horizontal writing modes and the maximum height for vertical writing modes, respectively. A companion property, max-block-size defines the other dimension.
Possible Values
The max-inline-size property accepts the same values as max-height and max-width.
Applies To
Syntax
<length> Values
max-inline-size: 300px; max-inline-size: 25em;
<percentage> Values
max-inline-size: 40%;
Keyword Values
max-inline-size: none; max-inline-size: max-content; max-inline-size: min-content; max-inline-size: fit-content; max-inline-size: fit-content(20em);
CSS max-inline-size - <length> Value
The following example demonstrates the max-inline-size: 300px property sets the maximum width of the element to the 300px −
<html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: 300px; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: 300px</h4> </div> </body> </html>
CSS max-inline-size - <percentage> Value
The following example demonstrates the max-inline-size: 80% property sets the maximum width of the element to the 80% −
<html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: 80%; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: 80%</h4> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html>
CSS max-inline-size - <max-content> Value
The following example demonstrates the max-inline-size: max-content property allowed the width of the div element to expand horizontally to fit the content −
<html> <head> <style> div { background-color: greenyellow; border: 3px solid red; max-inline-size: max-content; } </style> </head> <body> <div> <h2>Tutorialspoint</h2> <h4>CSS max-inline-size: max-content</h4> </div> </body> </html>
CSS max-inline-size - With Vertical Text
The following example demonstrates the max-inline-size property with writing-modes to display text in vertical direction −
<html> <head> <style> div { background-color: greenyellow; border: 2px solid blue; margin: 10px; padding: 5px; block-size: 100%; max-inline-size: 100px; writing-mode: vertical-rl; } </style> </head> <body> <div > <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html>