Skip to content

Instantly share code, notes, and snippets.

@gusgollings
Created November 11, 2012 05:18
Show Gist options
  • Save gusgollings/4053809 to your computer and use it in GitHub Desktop.
Save gusgollings/4053809 to your computer and use it in GitHub Desktop.
OH "Is there a CSS selector to select all *except* the current child being hovered on?"
<head>
<title>All bar one</title>
<style>
ol:hover {color: green}
li:hover {color: red}
</style>
</head>
<body>
<ol>
<li>FIRST</li>
<li>SECOND</li>
<li>THIRD</li>
<li>FOURTH</li>
</ol>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment