page-break-after - CSS: Cascading Style Sheets 编辑

This property has been replaced by the break-after property.

The page-break-after CSS property adjusts page breaks after the current element.

/* Keyword values */
page-break-after: auto;
page-break-after: always;
page-break-after: avoid;
page-break-after: left;
page-break-after: right;
page-break-after: recto;
page-break-after: verso;

/* Global values */
page-break-after: inherit;
page-break-after: initial;
page-break-after: unset;

This property applies to block elements that generate a box. It won't apply on an empty <div> that won't generate a box.

Syntax

Values

auto
Initial value. 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.
recto This is an experimental API that should not be used in production code.
If pages progress left-to-right, then this acts like right. If pages progress right-to-left, then this acts like left.
verso This is an experimental API that should not be used in production code.
If pages progress left-to-right, then this acts like left. If pages progress right-to-left, then this acts like right.

Page break aliases

The page-break-after property is now a legacy property, replaced by break-after.

For compatibility reasons, page-break-after should be treated by browsers as an alias of break-after. This ensures that sites using page-break-after continue to work as designed. A subset of values should be aliased as follows:

page-break-afterbreak-after
autoauto
leftleft
rightright
avoidavoid
alwayspage

Formal definition

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
Computed valueas specified
Animation typediscrete

Formal syntax

auto | always | avoid | left | right | recto | verso

Examples

Setting a page break after footnotes

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

Specifications

SpecificationStatusComment
CSS Logical Properties and Values Level 1
The definition of 'recto and verso' in that specification.
Editor's DraftAdds the values recto and verso.
CSS Paged Media Module Level 3
The definition of 'page-break-after' in that specification.
Working DraftExtends 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.
RecommendationInitial definition

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:108 次

字数:8151

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文