frankyonnetti
7/7/2013 - 9:10 PM

#css break/wrap long text

#css break/wrap long text

/* http://css-tricks.com/snippets/css/prevent-long-urls-from-breaking-out-of-container/ */

a {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word; // Non standard for webkit
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.nobr {
  white-space: nowrap;
}