Skip to content

Instantly share code, notes, and snippets.

@alexbaulch
Created December 1, 2014 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexbaulch/55f6fb77bff7c7468a5e to your computer and use it in GitHub Desktop.
Save alexbaulch/55f6fb77bff7c7468a5e to your computer and use it in GitHub Desktop.
Sass (scss) mixin for styling placeholders cross browser
@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