box-decoration-break
The box-decoration-break CSS property controls the decoration of the box when a break splits the box.
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
clone
slice
JS