Within a grid system that is 1140px wide, I have a DIV set to 100% width. Inside this div, there is an image displayed.
The issue arises when the background of the div is black - there is still a 1cm gap at the bottom where the black color persists.
Here is an example:
<div style="background:black; width:100%;">
<img src="http://i42.tinypic.com/ofq9tg.png" >
I'm considering using a float on the image or changing its display property to block. Which approach would be more effective?