Skip to content

Instantly share code, notes, and snippets.

@julzmon
Created September 2, 2014 00:51
Show Gist options
  • Select an option

  • Save julzmon/17ad324cbc418e1267e9 to your computer and use it in GitHub Desktop.

Select an option

Save julzmon/17ad324cbc418e1267e9 to your computer and use it in GitHub Desktop.
Cut off long lines with ellipsis
.text-overflow {
white-space: nowrap; /* No line breaks */
overflow: hidden; /* Hide text which does not fit the block */
text-overflow: ellipsis; /* Cut off with ellipsis */
display: block; /* Works only for block elements */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment