Created
December 17, 2022 14:05
-
-
Save iamrobert/34a90d049b2257cfa20ef27b184db8b0 to your computer and use it in GitHub Desktop.
LT Broswer can't read :is()
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Untitled Document</title> | |
<style> | |
:is(.green) { | |
color: green; | |
background:lime; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="green">GREEN</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment