Easy Tutorial
❮ Css3 Pr Overflow Style Pr Charset Rule ❯

CSS3 box-lines Property

Example

Specify a div box to allow expansion into multiple lines:


Browser Support

Currently, all major browsers do not support the box-lines property.


Property Definition and Usage

The box-lines property specifies whether a new line is obtained in the columns whenever it runs out of space in the parent box.

Note: By default, a horizontal box will lay out its child elements in a single line, and a vertical box will lay out its child elements in a single column.

Default value: single
Inherited: no
--- ---
Version: CSS3
--- ---
JavaScript syntax: object.style.boxLines="multiple"
--- ---

Syntax

Value Description
single All child elements will be placed in a single line or column (elements that do not fit will be considered overflow)
multiple The box is allowed to expand into multiple lines to accommodate all its child elements
❮ Css3 Pr Overflow Style Pr Charset Rule ❯