Utilities for controlling word breaks in an element.
Class |
Properties |
|---|---|
| break-normal | overflow-wrap: normal; word-break: normal; |
| break-words | overflow-wrap: break-word; |
| break-all | word-break: break-all; |
| break-keep | word-break: keep-all; |
Use break-normal to only add line breaks at normal word break points.
<p class="break-normal ...">...</p>
Use break-words to add line breaks mid-word if needed.
<p class="break-words ...">...</p>
Use break-all to add line breaks whenever necessary, without trying to preserve whole words.
<p class="break-all ...">...</p>
Use break-keep to prevent line breaks from being applied to Chinese/Japanese/Korean (CJK) text. For non-CJK text break-keep has the same behavior as break-normal.
<p class="break-keep ...">...</p>
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:break-all to only apply the break-all utility on hover.
<p class="break-normal hover:break-all"> <!-- ... --> </p>
For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
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-all to apply the break-all utility at only medium screen sizes and above.
<p class="break-normal md:break-all"> <!-- ... --> </p>
To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
© 2022 Tailwind Labs Inc.
https://tailwindcss.com/docs/word-break