1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

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

This commit is contained in:
Mark Otto 2012-05-13 14:28:32 -07:00
commit 1a8561d084

View file

@ -312,6 +312,16 @@
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 / 100;