Well it's that time again...
Microsoft has gone and released yet another browser that isn't up to current expected standards at the time of it's release, and this time even Google has done better than Microsoft, but I digress...
As Microsoft has neglected the 'transform' from it's new browser, I need a hack that targets IE9 only, in the style-sheet.
Code:
.login_box_right:hover, .login_box_left:hover{
-webkit-transform: skew(0deg,0deg);
-o-transform: skew(0deg,0deg);
-moz-transform: skew(0deg,0deg);
margin-top:100px/9;
margin-bottom:-100px/9;
}
Note that I am trying to prevent the margin change in IE, because it is not able to render transform: skew...
Note, as a last resort, I'll have to target it with a
Code:
<!--[if IE 9]>margin-top:0;
margin-bottom:0;
<![endif] -->