Text Overflow and Truncation ​
Utilities for controlling text overflow and truncation.
| Class Name | CSS Equivalent |
|---|---|
| .text-clip | text-overflow: clip; |
| .text-ellipsis | text-overflow: ellipsis; |
| .truncate | overflow: hidden; text-overflow: ellipsis; white-space: nowrap; |
Truncate ​
Use truncate to truncate overflowing text with an ellipsis (…) if needed.
html
<p class="[...] truncate ">...</p>Ellipsis ​
Use text-ellipsis to truncate overflowing text with an ellipsis (…) if needed.
html
<p class="[...] text-ellipsis overflow-hidden">...</p>Clip ​
Use text-clip to truncate the text at the limit of the content area.
html
<p class="[...] text-clip overflow-hidden">...</p>