I have a .svg logo that I need to display on my page and found that it does not appear right on IE11. its scaled and just a part of it appears , whereas other browsers display correctly. I changed its height property to max-height and it looks fine now. I could not find a proper explanation as to why that happened. Will anybody be able to help me here
CSS which did not work in IE
.svglogo {
height:70px;
}
CSS which worked
.svglogo {
max-height: 70px;
}