-
-
Save shrunyan/88676fe61d695b3f36b9 to your computer and use it in GitHub Desktop.
@supports IE TestDrive Code Samples
This file contains hidden or 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
b { | |
background-color: red; | |
} | |
@media only screen { | |
b { | |
background-color: green; | |
} | |
b[class] { | |
background: linear-gradient( 0deg, rgb(65, 150, 44), rgb(26, 219, 73) ); | |
} | |
} |
This file contains hidden or 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
b { | |
background-color: red; | |
background-color: rgba(34, 132, 39, 1); | |
} |
This file contains hidden or 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
b { | |
background-color: red; | |
} | |
b[class] { | |
background-color: green; | |
} |
This file contains hidden or 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
b { | |
background-color: red; | |
} | |
@supports ( background: linear-gradient(0deg,red,red) ) { | |
b { | |
background: linear-gradient( 0deg, rgb(65, 150, 44), rgb(26, 219, 73) ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment