Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

page-break-after

Resumo

A propriedade CSS page-break-after ajusta as "quebra de páginas" após o elemento atual.

Está propriedade aplica para elementros block que geram uma caox. Não será aplica numa <div> vazia que não irá gerar uma caixa (box).

Nota: Está propriedade está em progresso para ser substituida por uma mais generica: break-after. Esta nova propriedade também handles column and region breaks and is syntactically compatível com page-break-after.

Antes de usar page-break-after, veja se você pode utilizar o  break-after. No futuro page-break-after será um mero pseudômino para alguns valores dele..

Initial valueauto
Applies toblock-level elements in the normal flow of the root element. User agents may also apply it to other elements like table-row elements.
Inheritedno
Mediavisual, paged
Computed valueas specified
Animatableno
Canonical orderthe unique non-ambiguous order defined by the formal grammar

Sintaxe

Sintaxe formal: auto | always | avoid | left | right
page-break-after: auto
page-break-after: always
page-break-after: avoid
page-break-after: left
page-break-after: right

page-break-after: inherit

Valores

auto
Valor inicial. Automatic page breaks (neither forced nor forbidden).
always
Always force page breaks after the element.
avoid
Avoid page breaks after the element.
left
Force page breaks after the element so that the next page is formatted as a left page.
right
Force page breaks after the element so that the next page is formatted as a right page.

Exemplos

/* move to a new page after footnotes */
div.footnotes { 
  page-break-after:always; 
} 

Especificações

Especificações Status Comentários
CSS Paged Media Module Level 3
The definition of 'page-break-after' in that specification.
Working Draft Extends the element that this property applies to table rows and table row groups.
CSS Level 2 (Revision 1)
The definition of 'page-break-after' in that specification.
Recommendation Especificações iniciais.

Compatibilidade com navegadores

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support (auto, always) 1.0 1.0 (1.7 or earlier) 4.0 7.0 1.2 (125)
avoid, left, right 1.0 Não suportado (bug 132035) 4.0 7.0 1.2 (125)
Feature Android Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support ? 1.0 (1.0) ? ? ?
avoid, left, right ? Não suportado (bug 132035) ? ? ?

Veja também

Etiquetas do documento e colaboradores

 Colaboradores desta página: teoli, Estevaosoberano
 Última atualização por: teoli,