I have this piece of code
.image.medium {
width:10vmin;
height:10vmin;
}
.image.small {
width:6vmin;
height:6vmin;
}
.image.medium.as_big {
margin:5vmin;
}
.image.small.as_big {
margin:7vmin;
}
AS you can se it contains those "vmin" units, which are not of use on IE9 because it uses "vm".
I don't have IE in my computer like to check, it's a linux computer anyway, so I don't know how I could make this css usable by both, IE9 and the other browsers.
Also I was thinking, should I use the javascript workaround instead? I just want vmin, according to http://caniuse.com/#feat=viewport-units it's not supported by so many browsers, and I would like to be able to zoom.