I have the CSS and HTML below. I try changing the size of the image and it does not work. Why is there a gap underneath my image?
#photo {
position: absolute;
margin-left: 15px;
margin-top: 15px;
border: 3px solid black;
}
<div id="photo">
<img src="http://www.placehold.it/210X180" alt="Picture" style="width:210px;height:180px" />
</div>