Skip to content

Home

Truncate text

Truncates text that is longer than one line, adding an ellipsis at the end ().

<p class="truncate-text">If I exceed one line's width, I will be truncated.</p>
.truncate-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 200px;
}

More like this

Start typing a keyphrase to see matching snippets.