CSS Border-Break Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

When a box that has a border is broken at a page break, column break, or, for inline elements, at a line break, a border and some padding can be inserted at the break, or the border can be left open. 

Syntax

border-break: [value1] [value2] ...

Possible values

  • close
  • [border-width]
  • [border-style]
  • [color]

Initial Value

none

Applies To

Elements with a border

Inherited

No

Media

Visual

Example

.class {
  border-break: 1px solid;
}


View All CSS Properties