-
-
Save vitalyrotari/6845373f25864c9685a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Provides a mixin to define hyphenation | |
// | |
// Requires Compass | |
// | |
// (http://blog.fontdeck.com/post/9037028497/hyphens) | |
// (http://www.w3.org/TR/css3-text/#hyphenation) | |
// | |
// $value - The hyphenation property value. One of "none", "manual", "auto" or "all" | |
// | |
// Example .scss: | |
// | |
// @include hyphens("auto"); | |
// | |
// Sets hyphenation to "auto" | |
@mixin hyphens($value: "manual") { | |
@each $prefix in -webkit-, -moz-, -o-, "" { | |
#{$prefix}hyphens: $value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment