**CSS**
.testSVG { background: gray; width: 50%; }
.testSVG img { margin: 10px; max-width: 100%; }
**HTML:**
<div class="testSVG">
<img src="http://www.html5rocks.com/static/demos/svgmobile_fundamentals/images/HTML5- logo.svg" alt="html5">
</div>
In Firefox the parent div (in this example .testSVG) scaled both horizontally and vertically with the scaling .svg image.
However in IE9 the parent div scales on horizontally while the .svg is still scaled both horizontally and vertically.
I liked to duplicate what is happening in Firefox in IE as well. Does anyone have any insight?
Thanks, Z