Mid JavaScript

How can you make text overflow with ellipsis?

Use the following combination:

p {

width: 200px;

white-space: nowrap;

overflow: hidden;

text-overflow: ellipsis;

Key Takeaway:

Truncates long text with “…” when it exceeds container width.

More from JavaScript Tutorial

All questions for this course