Created
November 6, 2013 21:11
-
-
Save elijahmanor/7344159 to your computer and use it in GitHub Desktop.
Placeholder SASS 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
/* | |
Usage: | |
$placeholder: #999; | |
input { | |
@include placeholder { color: $placeholder; } | |
} | |
*/ | |
@mixin placeholder { | |
&::-webkit-input-placeholder { @content } /* webkit */ | |
&:-moz-placeholder { @content } /* ff 4-18 */ | |
&::-moz-placeholder { @content } /* ff 19+ */ | |
&:-ms-input-placeholder { @content } /* ie 10+ */ | |
&:-input-placeholder { @content } /* other... */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment