44
39

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.

【HTML5+CSS】Checkboxを美しいボタンにする方法 【js不使用】

Last updated at Posted at 2016-06-25

#チェックボックスってデザインがあまり良くない!
###現状
項目1

###こんな感じにしたい!
1466828487196.jpg

#これで出来る!
##CSSをこうして

label{
  cursor: pointer;
  padding:5px;
  border: 1px solid #434343;
  border-radius: 5px;
}
input{
  display: none;
}
.check_box:checked + .label {
  background-color: orange;
}

CSSざっくり解説
.check_box:checked + .label {}
この部分でチェックボックスがチェックされた時のlabelのデザインを指定している。
##HTMLをこう!

<input type="checkbox" class="check_box" id="hoge1" />
<label class="label" for="hoge1">HOGE!だよ!</label>

注意:ちゃんとinputタグのidとlabelのforをあわせましょう!

2つ以上チェックボックスを作るならこう!

<input type="checkbox" class="check_box" id="hoge1" />
<label class="label" for="hoge1">HOGE!だよ!</label>
<input type="checkbox" class="check_box" id="hoge2" />
<label class="label" for="hoge2">HOGE2だよ!</label>
<input type="checkbox" class="check_box" id="hoge3" />
<label class="label" for="hoge3">HOGE3だよ!</label>

#チェックボックスを綺麗にデザイン
簡単にざっくりと解説しているサイトが無かったので書きました。
誰かの参考になればと思います

44
39
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
44
39

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?