Last active
August 21, 2024 14:34
-
-
Save johnHackworth/147a513fbbfc4fe926734d2f3534bfda to your computer and use it in GitHub Desktop.
chrome nested css bug
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 lang="en"> | |
| <head> | |
| <style> | |
| body { | |
| h1 { | |
| color: red; | |
| } | |
| :bad-selector { | |
| outline: auto; | |
| } | |
| div { | |
| color: green; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>this should be red</h1> | |
| <div>this should be green</div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment