LoginSignup
0
0

More than 3 years have passed since last update.

:placeholder-shown 疑似クラス

Last updated at Posted at 2018-10-11

:placeholder-shown 疑似クラス

テキストボックス、テキストエリアのように、プレイスホルダーを設定することができる要素です。プレイスホルダーのテキストは HTMLでplaceholder属性で設定可能ですが、HTML上だけでなくCSSの:placeholder-shown擬似クラスを使ってスタイルを充てることが可能です。

:placeholder-shown {
  opacity: 1;
  color: #ff0000;
  background: #f0f0f0;
  font-weight: bold;
  border: 2px solid red;
}

:placeholder-shownはインプット要素全体に対してcssが適用されます。
:を二つ重ねた::placeholder擬似要素は、プレイスホルダーテキストのみにcssが適用されます。

input::placeholder {
  color: #fff;
  background: #f00;
  font-weight: bold;
}

:not()と組み合わせることで、フォーカス時に下記のような挙動も可能になります。

0
0
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
0
0