CSS property: -webkit-box-lines
Description
Specifies whether a flexible box should contain multiple lines of content.
This property applies only to flexible box layouts. For more information about flexible boxes, see http://www.w3.org/TR/css3-layout/.
Syntax
-webkit-box-lines: <behavior>;
Values
- <behavior>
If
multiple
, the flexible box can contain multiple lines of content; ifsingle
, only one line is allowed.multiple The box can contain multiple lines of content. single The box can contain only one line of content.