1
1

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 3 years have passed since last update.

チェックボックスとテキストのズレを直したい素人

Posted at

はじめに

 先日、チェックボックスとラベルのテキストのズレを直すのに少し手間取ってしまったので書いておきます。

解決方法

 vertical-alignpositionでの解決方法がネットでは多かったのですが、うまくいかなかったので(ヤバイCSSだったので何らかのプロパティが邪魔していたのだと思う)Flexboxで解決しました。

実践

チェックボックスやテキストを修飾していると両者のズレが目立ってきます。
スクリーンショット 2020-02-22 17.45.54.png

HTML
<div>
  <label><input class="checkbox">チェックボックス</label>
</div>
CSS
.checkbox {
  font-size: 50px;
}

 以下のようにして修正することで解決しました。同様の手法はラジオボタン等でも有効でした。

CSS
.checkbox {
  font-size: 50px;
  display: flex;
  align-items: center;
}
スクリーンショット 2020-02-22 17.49.33.png

おわり

 Flexboxはとても便利なので思考停止で使ってしまいます。その一方で、Flexboxのプロパティ名やそれらの挙動は覚えきれないので下記のデモサイトをよく使っています。便利なので是非使ってみてください。
https://demos.scotch.io/visual-guide-to-css3-flexbox-flexbox-playground/demos/

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?