Skip to content

Instantly share code, notes, and snippets.

@olecksamdr
Last active April 11, 2019 08:49
Show Gist options
  • Save olecksamdr/c2e8c575fa8f743ba73a94c478415af1 to your computer and use it in GitHub Desktop.
Save olecksamdr/c2e8c575fa8f743ba73a94c478415af1 to your computer and use it in GitHub Desktop.
.text-truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* https://justmarkup.com/log/2015/07/dealing-with-long-words-in-css/ */
.hyphenate {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment