HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

box-decoration-break

Description

The box-decoration-break property for CSS controls the decoration of the box when a break splits the box.

Syntax

CSS

box-decoration-break: value;

JS

object.style.boxDecorationBreak = "value";

Values

<'box-decoration-break'> = slice | clone
slice

Each fragment is rendered as though there are no breaks.

clone

Each fragment is independently wrapped with the border, padding, and margin.

Initial

slice

Examples

1 · clone

2 · slice

3 · JS