CSS Page-Break-After Property

CSS 1

CSS 2

CSS 3

No Yes Yes

Description

Specifies the page break to take place after an element.

Syntax

page-break-after: [value];

Possible values

  • auto
  • always
  • avoid
  • left
  • right
  • inherit

Initial Value

Auto

Applies To

Block level elements

Inherited

No

Media

Visual, Paged

Example

table {page-break-after: avoid;}


View All CSS Properties