Skip to content

Instantly share code, notes, and snippets.

@hectorpalmatellez
Created January 3, 2015 00:05
Show Gist options
  • Save hectorpalmatellez/8509acd169447bb61031 to your computer and use it in GitHub Desktop.
Save hectorpalmatellez/8509acd169447bb61031 to your computer and use it in GitHub Desktop.
Mixin para placeholders
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
// Se usa así:
// input {
// @include placeholder {
// color: #000;
// font: {
// family: 'Comic Sans MS';
// }
// }
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment