Here is demo…
In css code, I didn’t write any padding but image has padding-bottom.
Here is html codes :
<div class="image_block">
<img width="100" height="100" alt="Facebook" src="http://i.imwx.com/web/tv/
programs/facebook_logo_100x100.jpg">
</div>
Here is css code :
body {
background-color:#131211;
}
.image_block {
border:1px solid #b5b5b5;
float:left;
}
Your image_block div has 104px in height, there’s no padding there
Just set it to
height:100px;