keeping Images to aspect ratio in Img tag

keeping Images to aspect ratio in Img tag

by Pratik Bhoir

HTML

<div class="imgCase">
    <img src="http://www.applepietechnologies.com.ng/images/logo%20(1).gif" alt="" />
</div>

CSS

.imgCase {
    width:300px;
    height:200px;
}
img {
    max-width: 100%;
    max-height: 100%;
}