word-break.scss 454 B

1234567891011121314151617
  1. @mixin ext-word-break() {
  2. overflow-wrap: break-word;
  3. word-wrap: break-word;
  4. -ms-word-break: break-all;
  5. /* This is dangerous in WebKit as it breaks things at random points */
  6. word-break: break-all;
  7. /* Use this non-standard instead */
  8. word-break: break-word;
  9. /* Adds a hyphen where the word breaks, if supported (No Blink) */
  10. -ms-hyphens: auto;
  11. -moz-hyphens: auto;
  12. -webkit-hyphens: auto;
  13. hyphens: auto;
  14. }