Text Overflow
Atomic Props | CSS Properties |
---|---|
truncate | overflow: hidden; text-overflow: ellipsis; white-space: nowrap; |
overflowEllipsis | text-overflow: ellipsis; |
overflowClip | text-overflow: clip; |
Truncate
Use truncate
atomic props to truncate overflowing text with an ellipsis (…) if needed.
Result
Loading...
Live Editor
Overflow Ellipsis
Use overflowEllipsis
to truncate overflowing text with an ellipsis (…) if needed.
Result
Loading...
Live Editor
Overflow Clip
Use overflowClip
to truncate the text at the limit of the content area.
Result
Loading...
Live Editor