CSS | max-block-size Property Last Updated : 28 Jun, 2022 Comments Improve Suggest changes Like Article Like Report The CSS max-block-size property is used to create the maximum size of an element in the direction opposite that of the writing direction. Like if the writing direction is horizontal then max-block-size is equivalent to max-height, and if it is in vertical mode then equal to max-width. Syntax: max-block-size: length | percentage | auto | none | min-content | max-content | fit-content | inherit | initial | unset; Property values: length: It sets a fixed value defined in px, cm, pt etc. Negative values are allowed. Its default value is 0px.percentage (%): It is the same as length but the size is set in term of percentage of the window size.auto: It is used when it is desired that the browser determines the block-size.none: It is used when you don't want to limit on the size of the box.max-content: It is used when you preferred max-width on the size of the box.min-content: It is used when you preferred min-width on the size of the box.fit-content: It is used when you preferred exact-width on the size of the box.initial: It is used to set the value of the max-block-size property to its default value.inherit: It is used when it is desired that the element inherits the max-block-size property of its parent as its own.unset: It is used unset the default max-block-size. Below examples illustrate the max-block-size property in CSS: Example 1: html <!DOCTYPE html> <html> <head> <title>CSS | max-block-size Property</title> <style> h1 { color: green; } div { background-color: green; width: 200px; height: 20px; } .one { position: relative; max-block-size: 10px; background-color: cyan; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | max-block-size Property</b> <br> <br> <div> <p class="one"> A Computer Science Portal for Geeks </p> </div> </center> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <head> <title>CSS | max-block-size Property</title> <style> h1 { color: green; } div { background-color: green; width: 200px; height: 20px; } .one { position: relative; max-block-size: auto; background-color: cyan; } </style> </head> <body> <center> <h1>Geeksforgeeks</h1> <b>CSS | max-block-size Property</b> <br> <br> <div> <p class="one"> A Computer Science Portal for Geeks </p> </div> </center> </body> </html> Output: Supported Browsers: The browsers supported by max-block-size property are listed below: Firefox 41Google Chrome 57Edge 79Opera 44Safari 12.1 Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/max-block-size Comment More infoAdvertise with us Next Article CSS | max-block-size Property S skyridetim Follow Improve Article Tags : Web Technologies CSS CSS-Properties Similar Reads CSS | min-block-size Property The min-block-size property in CSS is used to create the minimum horizontal or vertical size of an element. If the writing direction is horizontal then min-block-size is equivalent to min-height property, and if it is in vertical mode then equal to min-width property. Syntax: min-block-size: length| 2 min read CSS | block-size Property The block-size property in CSS is used to define the horizontal or vertical size of an element's block. It coincides with the width or the height property, depending on the value of the writing-mode property. it leaves the space below are left of the element text.Syntax: block-size: length|percentag 2 min read CSS mask-size property CSS mask-size property sets the size of the mask image on the mask painting area. The mask-size property in CSS is used to specify the size of the mask image applied to an element using CSS masking. It determines the width and height of the mask image, allowing for precise control over its dimension 2 min read CSS | margin-block Property The margin-block property is used to define the logical block end margin of an element. This property helps to place margin depending on the element's writing mode, directionality, and text orientation.Syntax: margin-block-end: length | auto | initial | inherit | unset; Property values: length: Sets 2 min read CSS max-inline-size Property The CSS max-inline-size Property sets the maximum width or height of an element depending on its writing mode. It's particularly useful for controlling the size of inline elements like text or images within a container. For horizontal writing modes (like left-to-right languages), it controls the max 2 min read Like