Skip to content

Instantly share code, notes, and snippets.

@kara-ryli
Created January 8, 2013 23:36
Show Gist options
  • Save kara-ryli/4489094 to your computer and use it in GitHub Desktop.
Save kara-ryli/4489094 to your computer and use it in GitHub Desktop.
Mixin for browser-namespaced placeholder styling.
@mixin placeholder {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
&::-webkit-input-placeholder {
@content;
}
&::-moz-placeholder {
@content;
}
&:-moz-placeholder {
@content;
}
&:-ms-input-placeholder {
@content;
}
&:placeholder {
@content;
}
}
@kara-ryli
Copy link
Author

HTML:

<input placeholder="Search…">

SCSS:

@include "placeholder";

input {
  color: black;
  @include placeholder {
    color: grey;
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment