Created
May 27, 2014 22:53
-
-
Save artlung/f012fc87153c446703af to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
<input type="" placeholder="hello" /> |
This file contains hidden or 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
// ---- | |
// Sass (v3.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
@mixin placeholderstyle() { | |
color: red; | |
} | |
input::-webkit-input-placeholder { | |
@include placeholderstyle() | |
} | |
input:-moz-placeholder { | |
@include placeholderstyle() | |
} | |
input::-moz-placeholder { | |
@include placeholderstyle() | |
} | |
input:-ms-input-placeholder { | |
@include placeholderstyle() | |
} |
This file contains hidden or 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
input::-webkit-input-placeholder { | |
color: red; | |
} | |
input:-moz-placeholder { | |
color: red; | |
} | |
input::-moz-placeholder { | |
color: red; | |
} | |
input:-ms-input-placeholder { | |
color: red; | |
} |
This file contains hidden or 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
<input type="" placeholder="hello" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment