My current css is
.container {
display: block;
width: 400px;
height: auto;
padding: 0px 0px;
background-color: #ffffff;
border: black 1px solid;
}
.container img {
width: 100%;
}
And html is
<div class="container">
<img src="http://67.media.tumblr.com/15b26a66682a68facad249bd442ced38/tumblr_nw48hrdLfp1sikueao2_1280.jpg">
</div>
Here is the result, how do i get rid of the white space below the image?