LoginSignup
2
2

More than 5 years have passed since last update.

placeholderにスタイルを当てるSCSS Mixin

Posted at
@mixin placeholder-style {
  &::-webkit-input-placeholder {
    @content;
  }

  // Firefox 4 to 18
  &:-moz-placeholder {
    opacity:  1;
    @content;
  }

  // Firefox 19+
  &::-moz-placeholder {
    opacity:  1;
    @content;
  }

  // IE 10+
  &:-ms-input-placeholder {
    @content;
  }
}

Example

.text-input {
  @include placeholder-style {
    color: $color;
  };
}
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2