Created
December 4, 2014 22:21
-
-
Save stephenparish/8b855dd4d24d58272594 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.scaleIt { | |
-webkit-transform: scale(0.5); /* Saf3.1+, Chrome */ | |
-moz-transform: scale(0.5); /* FF3.5+ */ | |
-ms-transform: scale(0.5); /* IE9 */ | |
-o-transform: scale(0.5); /* Opera 10.5+ */ | |
transform: scale(0.5); /* IE8+ - must be on one line, unfortunately */ | |
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.5, M12=0, M21=0, M22=0.5, SizingMethod='auto expand')"; | |
/* IE6 and 7 */ | |
filter: progid:DXImageTransform.Microsoft.Matrix( | |
M11=0.5, | |
M12=0, | |
M21=0, | |
M22=0.5, | |
SizingMethod='auto expand'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment