Layout
Break Before
Utilities for controlling how a column or page should break before an element.
Quick reference
| Class | Properties |
|---|---|
| break-before-auto | break-before: auto; |
| break-before-avoid | break-before: avoid; |
| break-before-all | break-before: all; |
| break-before-avoid-page | break-before: avoid-page; |
| break-before-page | break-before: page; |
| break-before-left | break-before: left; |
| break-before-right | break-before: right; |
| break-before-column | break-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.
1. <div class="columns-2">
2. <p>Well, let me tell you something, ...</p>
3. <p class="break-before-column">Sure, go ahead, laugh...</p>
4. <p>Maybe we can live without...</p>
5. <p>Look. If you think this is...</p>
6. </div>
Applying conditionally
Hover, focus, and other states
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:break-before-column to only apply the break-before-column utility on hover.
1. <div class="hover:break-before-column">
2. <!-- ... -->
3. </div>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
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.
1. <div class="md:break-before-column">
2. <!-- ... -->
3. </div>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
