2019-10-19
Remove image bottom space
Because an image is an inline element by default, they have a small space at the bottom. There are many ways to get rid of it.
I often use this simple trick.
img {
vertical-align: top;
}
HTML
<img src="https://example.com/image.png">
Comments