90
70

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CSSAdvent Calendar 2017

Day 10

placeholderの色を変える方法

Posted at
  • placeholderの色を変えるには、::placeholder疑似要素を使う。
  • IEをサポートするなら、:-ms-input-placeholder疑似クラスも使う。
  • Edgeをサポートするなら、::-ms-input-placeholder疑似要素も使う。
input::placeholder {
  color: red;
}

/* IE */
input:-ms-input-placeholder {
  color: red;
}

/* Edge */
input::-ms-input-placeholder {
  color: red;
}

次のようにSCSSでmixin化してもよいだろう。

@mixin placeholder($color) {
  &::placeholder {
    color: $color;
  }

  // IE
  &:-ms-input-placeholder {
    color: $color;
  }

  // Edge
  &::-ms-input-placeholder {
    color: $color;
  }
}

input {
  @include placeholder(red);
}

デモ

参考文献

90
70
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
90
70

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?