The max-block-size
CSS property specifies the maximum size of an element in the direction opposite that of the writing direction as specified by writing-mode
. That is, if the writing direction is horizontal, then max-block-size
is equivalent to max-height
; if the writing direction is vertical, max-block-size
is the same as max-width
.
The other dimension's maximum length is specified using the max-inline-size
property.
This is useful because the max-width
is always used for horizontal sizes and max-height
is always used for vertical sizes, and if you need to set lengths based on the size of your text content, you need to be able to do so with the writing direction in mind.
Any time you would normally use max-height
or max-width
, you should instead use max-block-size
to set the maximum "height" of the content (even though this may not be a vertical value) and max-inline-size
to set the maximum "width" of the content (although this may instead be vertical rather than horizontal). See writing-mode
examples, which show the different writing modes in action.