Commit 1a8561d0 authored by Mark Otto's avatar Mark Otto

Merge branch 'hyphenation' of https://github.com/Synchro/bootstrap into Synchro-hyphenation

parents b261f978 ca369c4b
...@@ -312,6 +312,16 @@ ...@@ -312,6 +312,16 @@
column-gap: @columnGap; column-gap: @columnGap;
} }
// Optional hyphenation
.hyphens(@mode: auto) {
-webkit-hyphens: @mode;
-moz-hyphens: @mode;
-ms-hyphens: @mode;
-o-hyphens: @mode;
hyphens: @mode;
word-wrap: break-word;
}
// Opacity // Opacity
.opacity(@opacity) { .opacity(@opacity) {
opacity: @opacity / 100; opacity: @opacity / 100;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment