Skip to content

Instantly share code, notes, and snippets.

@gregwhitworth
Created June 14, 2017 04:50
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 gregwhitworth/23db671ea517d416e3ca8d65ee093e74 to your computer and use it in GitHub Desktop.
Save gregwhitworth/23db671ea517d416e3ca8d65ee093e74 to your computer and use it in GitHub Desktop.
creating-fallbacks-for-IE
<!doctype html>
<html>
<head>
<title>Fallbacks!!!</title>
<style>
#test {
width: 100px;
height: 100px;
background: red;
}
@supports(--has: "custom props") {
#test {
background: green;
}
}
</style>
</head>
<body>
I will readily admit I may be mis-understanding the issue, but this will give myself and @IamManchanda a place to discuss and possibly come up with some solutions (if any).
<div id="test"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment