It uses a single svg image in a div with a width of 50 pixels, but in IE11 SVG height reaches 150 pixels. It should have been 50px X 50px. a width of 50 pixels is correctly applied, not a height. Any suggestion,
.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>
Run codeHide resultThanks in advance for any help. codepen: http://codepen.io/shmdhussain/pen/YZmrOq
source
share