CSS break-inside Property
Description
The break-inside property controls whether a user-agent may insert a fragmentation break (for example a column break, page break, or region break) inside a box. It is used to keep atomic pieces of content - such as figures, images, code blocks, cards, or table rows - together rather than allowing them to be split awkwardly across columns or pages. In practical layout work, applying break-inside to a block-level container tells the rendering engine to avoid chopping that element in two when flowing content into multiple fragments.
This property interacts with the broader fragmentation model of CSS. In multi-column layouts it affects how content flows between column boxes created by properties like column-count, while in paged media it affects where page breaks may fall. It also works together with the per-edge manual break properties - for example, you can influence break placement around an element with break-before and break-after while using break-inside to avoid breaking the element itself.
There are important practical and edge-case behaviors to be aware of. User agents will generally honor the avoidance of internal breaks, but they may still break an element when it is larger than a single fragment (if the content cannot otherwise fit), and some complex element types (table rows, floats, absolutely positioned boxes) have special handling. Also, preventing breaks inside many adjacent elements can lead to large gaps or unexpected whitespace because the engine must find a place to break elsewhere; for this reason, it’s often useful to combine break control with careful content sizing and container design.
Definition
- Initial value
- auto
- Applies to
- Block level elements
- Inherited
- Yes
- Computed value
- Specified value
- Animatable
- No
- JavaScript syntax
- object.style.breakInside
Syntax
break-inside: auto | avoid | avoid-page | avoid-column
Values
- autoA page/column/region break is determined by the flow of content.
- avoidA page/column/region break is not allowed within the content block.
- avoid-pageA page break is not allowed within the content block.
- avoid-columnA column break is not allowed within the content block.
- avoid-regionA region break is not allowed within the content block.
- inherit
Example
Browser Support
The following information will show you the current browser support for the CSS break-inside property. Hover over a browser icon to see the version that first introduced support for this CSS property.
This property is supported by all modern browsers.
Desktop
Tablets & Mobile
Last updated by CSSPortal on: 1st January 2026
