Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Border Adds Padding At Bottom of Images Re: Border Adds Padding At Bottom of Images

#134744
wolfcry911
Participant

the _image_ is inline by default, you need to target the _image_ and change it to block, or vertical-align: bottom;

.imgrow1 img {
display: block;
}

and why two different classes with the same exact styling?