Truncate Text (Ellipsis)

Cut off text with ... when it overflows

Text

Live preview

This is a long text that will be truncated with an ellipsis when it overflows the container width.

CSS

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

Browser support

All browsers. text-overflow: ellipsis since IE6.

Related tools

Other CSS examples