CSS Line-Stacking-Strategy Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

This property determines the line stacking strategy for stacked line boxes within a containing block element.

Syntax

line-stacking-strategy: [value];

Possible values

  • inline-line-height
  • block-line-height
  • max-height
  • grid-height

Initial Value

inline-line-height

Applies To

Block-level elements

Inherited

Yes

Media

Visual

Example

.class {
  line-stacking-strategy: max-height ;
}


View All CSS Properties