Skip to content

Instantly share code, notes, and snippets.

@johnHackworth
Last active August 21, 2024 14:34
Show Gist options
  • Select an option

  • Save johnHackworth/147a513fbbfc4fe926734d2f3534bfda to your computer and use it in GitHub Desktop.

Select an option

Save johnHackworth/147a513fbbfc4fe926734d2f3534bfda to your computer and use it in GitHub Desktop.
chrome nested css bug
<!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