Using one SVG image in a div with a width of 50px results in a height of 150px in IE11. The correct dimensions should be 50px x 50px. The width is applied correctly, but the height is not. Any suggestions?
.svg-cont{
width:50px
}
img{
max-width:100%;
height:auto;
}
<div class="svg-cont">
<img src="http://imgh.us/google-plus-hvr.svg" alt="" />
</div>
Thank you in advance for any assistance. Codepen link: http://codepen.io/shmdhussain/pen/YZmrOq