Aller au contenu

Break inside

import { ApiTable } from "@/components/api-table.tsx"; import { ResponsiveDesign } from "@/components/content.tsx";

export const title = "break-inside"; export const description = "Utilities for controlling how a column or page should break within an element.";

Examples

Basic example

Use utilities like break-inside-column and break-inside-avoid-page to control how a column or page break should behave within an element:

<!-- [!code classes:break-inside-avoid-column] -->
<div class="columns-2">
  <p>Well, let me tell you something, ...</p>
  <p class="break-inside-avoid-column">Sure, go ahead, laugh...</p>
  <p>Maybe we can live without...</p>
  <p>Look. If you think this is...</p>
</div>

Responsive design