Created
June 23, 2011 21:00
-
-
Save johanbrook/1043617 to your computer and use it in GitHub Desktop.
Resets some fancy CSS2.1/CSS3 properties to (to some extent) simulate how an IE user sees the interface.
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
-moz-border-radius: 0 !important; | |
-webkit-border-radius: 0 !important; | |
border-radius: 0 !important; | |
text-shadow: none !important; | |
-webkit-box-shadow: none !important; | |
-moz-box-shadow: none !important; | |
box-shadow: none !important; | |
opacity: 1.0 !important; | |
-webkit-transition: none !important; | |
-moz-transition: none !important; | |
transition: none !important; | |
-webkit-transform: none !important; | |
-moz-transform: none !important; | |
transform: none !important; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment