break-before - CSS(层叠样式表) 编辑

The break-before CSS 属性定义页面,列或区域在生成的盒子之前应如何处理中断。 如果没有生成的盒子,则忽略该属性。

/* Generic break values */
break-before: auto;
break-before: avoid;

/* Page break values */
break-before: avoid-page;
break-before: page;
break-before: always;
break-before: left;
break-before: right;
break-before: recto;
break-before: verso;

/* Column break values */
break-before: avoid-column;
break-before: column;

/* Region break values */
break-before: avoid-region;
break-before: region;

/* Global values */
break-before: inherit;
break-before: initial;
break-before: unset;

Each possible break point (in other words, each element boundary) is affected by three properties: the break-after value of the previous element, the break-before value of the next element, and the break-inside value of the containing element.

To determine if a break must be done, the following rules are applied:

  1. If any of the three concerned values is a forced break value (always, left, right, page, column, or region), it has precedence. If more than one of them are such a break, the one of the element that appears the latest in the flow is taken (i.e., the break-before value has precedence over the break-after value, which itself has precedence over the break-inside value).
  2. If any of the three concerned values is an avoid break value (avoid, avoid-page, avoid-region, or avoid-column), no such break will be applied at that point.

Once forced breaks have been applied, soft breaks may be added if needed, but not on element boundaries that resolve in a corresponding avoid value.

初始值auto
适用元素block-level elements
是否是继承属性
计算值as specified
Animation typediscrete

Syntax

The break-before property is specified as one of the keyword values from the list below.

Values

General break values

auto
Allows, but does not force, any break (page, column, or region) to be inserted right before the principal box.
avoid
Avoids any break (page, column, or region) from being inserted right before the principal box.

Page break values

avoid-page
Avoids any page break right before the principal box.
page
Forces a page break right before the principal box.
always
Forces a page break right before the principal box. (This is an alias of page, and has been kept to facilitate the transition from page-break-after, which is a subset of this property.)
left
Forces one or two page breaks right before the principal box, whichever will make the next page into a left page.
right
Forces one or two page breaks right before the principal box, whichever will make the next page into a right page.
recto
Forces one or two page breaks right before the principal box, whichever will make the next page into a recto page. (A recto page is a right page in a left-to-right spread or a left page in a right-to-left spread.)
verso
Forces one or two page breaks right before the principal box, whichever will make the next page into a verso page. (A verso page is a left page in a left-to-right spread or a left right in a right-to-left spread.)

Column break values

avoid-column
Avoids any column break right before the principal box.
column
Forces a column break right before the principal box.

Region break values

avoid-region
Avoids any region break right before the principal box.
region
Forces a region break right before the principal box.

Formal syntax

auto | avoid | always | all | avoid-page | page | left | right | recto | verso | avoid-column | column | avoid-region | region

Specifications

SpecificationStatusComment
CSS Fragmentation Module Level 3
break-before
Candidate RecommendationAdds the recto and verso keywords. Changes the media type of this property from paged to visual. Defines the breaking algorithm with different kinds of breaks.
CSS Regions Module Level 1
break-before
Working DraftExtends the property to handle region breaks. Adds the avoid-region and region keywords.
CSS Multi-column Layout Module
break-before
Working DraftInitial definition. Extends the CSS 2.1 page-break-before property to handle both page and column breaks.

Browser compatibility

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

 

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

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

发布评论

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

词条统计

浏览:80 次

字数:9654

最后编辑:7年前

编辑次数:0 次

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