How to remove white space below an image using CSS.
Before explaining, let me give you the solution first:
img {
display: block;
}
Why does this happen in the first place?
Let's set up an example where I have a <div> container surrounded by a red border and inside it is the image.
<div class...
brianbud.hashnode.dev1 min read