Skip to content

Layout

Break Before

Utilities for controlling how a column or page should break before an element.

Quick reference

ClassDescription
break-before-autobreak-before: auto
break-before-avoidbreak-before: avoid
break-before-allbreak-before: all
break-before-avoid-pagebreak-before: avoid-page
break-before-pagebreak-before: page
break-before-leftbreak-before: left
break-before-rightbreak-before: right
break-before-columnbreak-before: column

Basic usage

Setting the break-before behavior

Use the break-before-{value} utilities to control how a column or page break should behave before an element. For example, use the break-before-column utility to force a column break before an element.

html
<div class="columns-2">
  <p>Well, let me tell you something, ...</p>
  <p class="break-before-column">Sure, go ahead, laugh...</p>
  <p>Maybe we can live without...</p>
  <p>Look. If you think this is...</p>
</div>

Applying conditionally

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:break-before-column to apply the break-before-column utility at only medium screen sizes and above.

html
<div class="md:break-before-column">
  <!-- ... -->
</div>

Released under the Apache 2.0 License.