Skip to content

Instantly share code, notes, and snippets.

@egermano
Created May 19, 2014 15:42
Show Gist options
  • Save egermano/cd85c34547a8bf3371ae to your computer and use it in GitHub Desktop.
Save egermano/cd85c34547a8bf3371ae to your computer and use it in GitHub Desktop.
Input Placeholder Compass Mixin
@mixin placeholder() {
&::-webkit-input-placeholder {
@content;
}
&:-moz-placeholder {
@content;
}
&::-moz-placeholder {
@content;
}
&:-ms-input-placeholder {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment