Skip to content

Instantly share code, notes, and snippets.

@shrunyan
Forked from aarongustafson/block-filter.css
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrunyan/88676fe61d695b3f36b9 to your computer and use it in GitHub Desktop.
Save shrunyan/88676fe61d695b3f36b9 to your computer and use it in GitHub Desktop.
@supports IE TestDrive Code Samples
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) );
}
}
b {
background-color: red;
background-color: rgba(34, 132, 39, 1);
}
b {
background-color: red;
}
b[class] {
background-color: green;
}
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