Created
June 16, 2011 21:19
-
-
Save chriscoyier/1030312 to your computer and use it in GitHub Desktop.
noCSS3.css
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
* { | |
-webkit-border-radius: 0 !important; | |
-moz-border-radius: 0 !important; | |
border-radius: 0 !important; | |
-webkit-box-shadow: 0 !important; | |
-moz-box-shadow: 0 !important; | |
box-shadow: 0 !important; | |
-webkit-transition: none !important; | |
-moz-transition: none !important; | |
-ms-transition: none !important; | |
-o-transition: none !important; | |
transition: none !important; | |
-webkit-transform: none !important; | |
-moz-transform: none !important; | |
-ms-transform: none !important; | |
-o-transform: none !important; | |
transform: none !important; | |
-webkit-animation: none !important; | |
-moz-animation: none !important; | |
animation: none !important; | |
text-shadow: none !important; | |
-webkit-box-shadow: none !important; | |
-moz-box-shadow: none !important; | |
box-shadow: none !important; | |
-webkit-background-size: 100% 100% !important; | |
-moz-background-size: 100% 100% !important; | |
background-size: 100% 100% !important; | |
-webkit-background-clip: border-box !important; | |
-moz-background-clip: border-box !important; | |
background-clip: border-box !important; | |
-webkit-background-origin: 0 0 !important; | |
-moz-background-origin: 0 0 !important; | |
background-origin: 0 0 !important; | |
-webkit-border-image: none !important; | |
-moz-border-image: none !important; | |
border-image: none !important; | |
-ms-filter: none !important; | |
filter: none !important; | |
} |
Setting background-size to 100% 100% in problematic. Maybe just "inherit" ?
I tryed it, i have a css3 with gradient background and i can see the gradien
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
need to add background-origin, background-clip, maybe transform-origin (or maybe that's irrelevant if you remove the transform)