Skip to content

Instantly share code, notes, and snippets.

@leoneed
Forked from anonymous/dabblet.css
Created December 29, 2012 18:53
Show Gist options
  • Save leoneed/4408670 to your computer and use it in GitHub Desktop.
Save leoneed/4408670 to your computer and use it in GitHub Desktop.
Untitled
.wrapper div
{
float: left;
width: 20px;
height: 20px;
background-color: red;
}
div.asd
{
background-color: blue;
}
div:hover
{
background-color: green;
}
div.wrapper:hover > .asd ~div
{
background-color: green;
}
div:hover ~ div:not(.asd)
{
background-color: green !important;
}
div:hover ~ div.asd ~ div, div.asd:hover ~ div
{
background-color: red !important;
}
.asd ~div:hover ~div
{
background-color: red !important;
}
<div class='wrapper'>
<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div class="asd"></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>
</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment