Skip to content

Instantly share code, notes, and snippets.

@davaynamore
Created April 6, 2019 11:24
Show Gist options
  • Save davaynamore/e812cf5655c9815b833f4cb32281d1d8 to your computer and use it in GitHub Desktop.
Save davaynamore/e812cf5655c9815b833f4cb32281d1d8 to your computer and use it in GitHub Desktop.
placeholder styling
@mixin placeholder {
::-webkit-input-placeholder {
@content;
}
::-moz-placeholder {
@content;
}
:-ms-input-placeholder {
@content;
}
:-moz-placeholder {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment