CSS Page Property

CSS 1

CSS 2

CSS 3

No Yes Yes

Description

The CSS page property is used in paged media to specify the page type for printed elements.

Syntax

page: [value];

Possible values

  • [integer]
  • inherit

Initial Value

Auto

Applies To

Block level elements

Inherited

Yes

Media

Visual, Paged

Example

@page wide {size: landscape}
img {page: wide; page-break-before: right}


View All CSS Properties