Last active
December 30, 2015 18:09
-
-
Save ryanburgess/7865591 to your computer and use it in GitHub Desktop.
Hide Text easily using the Hide Text Mixin.
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
// ----------------------------------------- | |
// Hide Text | |
// ------------------------------------------- | |
// example: @include hide-text(); | |
@mixin hide-text() { | |
position:relative; | |
text-indent:-99999px; | |
display: inline-block; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment