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

imgタグの下に隙間ができる

Posted at

#imgタグの下に隙間ができる問題の解決方法
margin, padding共にゼロを指定しているのになぜか隙間ができていた。調べていたらどうやらフォントのベースラインから下端にかけて含まれるスペースのせいとのこと。

####HTML

<div class="top">
     <img src="./iamges/sample" height=100px>
</div>

imgの高さが100pxなのになぜかdiv.topの高さが少しだけ100pxより大きくなってしまう。下記のように指定したら治った。
####CSS

.top > img {
    vertical-align: top;
}
1
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
1
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?