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

マークアップ初心者のhtml,css謎現象と対処方法

Last updated at Posted at 2019-08-01

css,html謎現象

マークアップ時に「おやっ?」と遭遇した謎の現象と、
それに対処した方法を再現しつつメモ

深く追求したい気持ちは山々だけども、
とにかく解決せねばということで解決方法のみです。

原因、対処不可ケース、ブラウザ依存に関しては発見次第随時更新していきたいので、
コメント等大歓迎です!

inline-blockの隙間

現象

メニューなどでよく使うinline-block
「あれっ?」と思った隙間はまずこれを疑うべし!

スクリーンショット 2019-08-01 17.02.04.png
<div class="parent">
  <div class="child">inline-block</div>
  <div class="child">inline-block</div>
  <div class="child">inline-block</div>
</div>
.parent {
  display: block;
}
.child {
  display: inline-block;
  font-size: 16px;
  background-color: red;
}

対処方法

親要素にfont-size: 0;を指定で解決
スクリーンショット 2019-08-01 17.11.39.png

    .parent {
      display: block;
      font-size: 0;  ←これ
    }
    .child {
      display: inline-block;
      font-size: 16px;
      background-color: red;
    }
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?