max-inline-size
max-inline-size
is a logical property in CSS that defines the maximum width of an element when the writing-mode
is horizontal, or the maximum height of the element when the writing-mode
is vertical.
.element {
max-inline-size: 500px;
writing-mode: vertical-lr;
}
CodePen…