0
0

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 1 year has passed since last update.

[CSS]selectboxにplaceholderを作る

Posted at

htmlのselectタグにはplaceholderないんですよね〜
ただデザインにplaceholder入ってるやんっ!てなる時あるあるでしょう。
毎回忘れるので忘備録としてメモリます!

これでok

  1. <select>にrequiredかける。
  2. placeholder用の<option>にdisabled,とselectedをかける
  3. select:invalid { color: 色; }を付ける
select.html
<label for="id" class="label">
  <select name="select" id="id" class="select" required>
    <option value="" disabled selected>選択してください</option>
    <option value="hoge">hoge</option>
    <option value="fuga">fuga</option>
    <option value="piyo">piyo</option>
  </select>
</label>
select.css
select:invalid {
  color: gray;
}
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?