Skip to content

Instantly share code, notes, and snippets.

@sthales
Forked from jbutko/style.css
Created October 23, 2019 11:29
Show Gist options
  • Save sthales/3ca4a4da09ae6470e425206633f7fc2d to your computer and use it in GitHub Desktop.
Save sthales/3ca4a4da09ae6470e425206633f7fc2d to your computer and use it in GitHub Desktop.
#CSS: Show three dots (...) at the end of the line
span {
display:inline-block;
width:180px;
white-space: nowrap;
overflow:hidden !important;
text-overflow: ellipsis;
}
/* From http://stackoverflow.com/questions/11426275/how-can-i-show-dots-in-a-span-with-hidden-overflow*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment