Skip to content

Instantly share code, notes, and snippets.

@miguel-perez
Created December 4, 2012 16:18
Show Gist options
  • Save miguel-perez/4205724 to your computer and use it in GitHub Desktop.
Save miguel-perez/4205724 to your computer and use it in GitHub Desktop.
i18n Aside Nav
/* overflow: hidden */
.wl-sidenav .nav li a {
overflow: hidden; /* Prevents words from overflowing outside of their bounds */
}
/* word-break: break-all */
.wl-sidenav .nav li a {
word-break: break-all; /* Lines may break between any two characters for non-CJK scripts */
}
/* word-break: hyphenate */
.wl-sidenav .nav li a {
word-break: hyphenate; /* Words may be broken at an appropriate hyphenation point */
}
/* Best Solution */
.wl-sidenav .nav li a {
word-break: hyphenate;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment