_word-wrap.scss 376 B

1234567891011121314
  1. @mixin word-wrap() {
  2. // Break very long words such as pasted URL strings.
  3. overflow-wrap: break-word;
  4. word-wrap: break-word;
  5. //-ms-word-break: break-all;
  6. //word-break: break-all;
  7. word-break: break-word;
  8. // Add a hyphen where the word breaks, if supported (No Blink).
  9. //-ms-hyphens: auto;
  10. //-moz-hyphens: auto;
  11. //-webkit-hyphens: auto;
  12. //hyphens: auto;
  13. }