Skip to content

Instantly share code, notes, and snippets.

@kareemkibue
Created July 25, 2014 22:21
Show Gist options
  • Save kareemkibue/ce7bf0906593774bb8e2 to your computer and use it in GitHub Desktop.
Save kareemkibue/ce7bf0906593774bb8e2 to your computer and use it in GitHub Desktop.
HTML5 Placeholder Styling SASS Mixin
@mixin placeholder{
::-webkit-input-placeholder{ @content; }
:-moz-placeholder{ @content; }
::-moz-placeholder{ @content; }
:-ms-input-placeholder{ @content; }
}
/*use this mixin*/
@include placeholder{
/* STYLES e.g color, font, text-shadow */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment