CSS Background-Break Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

This property applies to elements when they are broken into several boxes (for example, across lines or across pages). It specifies how the background positioning area is derived from these multiple boxes and how the element's background is drawn within them.

Syntax

background-break: [value];

Possible values

  • bounding-box
  • each-box
  • continuous

Initial Value

continuous

Applies To

All elements

Inherited

No

Media

Visual

Example

.class {
   background-break: each-box;
}


View All CSS Properties