diff --git a/docs/less.html b/docs/less.html
index 476f5ac982..aff16044f9 100644
--- a/docs/less.html
+++ b/docs/less.html
@@ -907,6 +907,11 @@
@columnCount, @columnGap: @gridGutterWidth |
Make the content of any element use CSS3 columns |
+
+ .hyphens() |
+ @mode: auto |
+ CSS3 hyphenation when you want it (includes word-wrap: break-word ) |
+
Backgrounds and gradients
diff --git a/docs/templates/pages/less.mustache b/docs/templates/pages/less.mustache
index bb71484534..a83a28ceda 100644
--- a/docs/templates/pages/less.mustache
+++ b/docs/templates/pages/less.mustache
@@ -830,6 +830,11 @@
@columnCount, @columnGap: @gridGutterWidth |
{{_i}}Make the content of any element use CSS3 columns{{/i}} |
+
+ .hyphens() |
+ @mode: auto |
+ {{_i}}CSS3 hyphenation when you want it (includes word-wrap: break-word ){{/i}} |
+
{{_i}}Backgrounds and gradients{{/i}}
diff --git a/less/mixins.less b/less/mixins.less
index b5c5352cf2..8efe12b388 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -314,12 +314,12 @@
// Optional hyphenation
.hyphens(@mode: auto) {
+ word-wrap: break-word;
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
-ms-hyphens: @mode;
-o-hyphens: @mode;
hyphens: @mode;
- word-wrap: break-word;
}
// Opacity