Can anyone tell me why the below CSS produces extra margin below the image? It should just add a 5px padding around the whole thing and it works fine with text. Any ideas?

div#somediv {
margin: 0;
padding: 5px;
}

div#somediv img {
margin: 0;
padding: 0;
}

<div id="somediv">
  <img src="someimage.jpg" />
</div>
link|improve this question

There wasn't any additional margin below image as how I have rendered it in FF3.5.7. Neither will the code be producing any margin except the 5px padding from the div#somediv. – mauris Jan 12 '10 at 23:39
feedback

1 Answer

up vote 8 down vote accepted

Try making the image a block-level element:

div#somediv img
{
    display: block;
    margin: 0;
    padding: 0;
}
link|improve this answer
WOW. I swear I dont know where my mind is. Thanks. – mike Jan 12 '10 at 23:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.