Skip to content

Instantly share code, notes, and snippets.

@leoneed
Created December 29, 2012 19:57
Show Gist options
  • Save leoneed/4409020 to your computer and use it in GitHub Desktop.
Save leoneed/4409020 to your computer and use it in GitHub Desktop.
Untitled
td
{
width: 20px;
height: 20px;
background-color: red;
}
td.selected
{
background-color: blue;
}
td:hover:not(.selected) ~td:not(.selected), td:hover:not(.selected), tr:hover ~tr > td:not(.selected)
{
background-color: green;
}
td:hover ~ td.selected ~ td, tr:hover ~ tr td.selected ~ td, tr.selected:hover ~ tr > td, tr:hover ~ tr.selected ~ tr > td
{
background-color: red !important;
}
tbody:hover > tr.selected ~ tr > td, tbody:hover > tr.selected > td.selected:not(:hover) ~ td
{
background-color: green;
}
tr.selected ~ tr:hover ~ tr > td, td.selected ~ td:hover ~ td, tr.selected ~ tr:hover > td:hover ~ td
{
background-color: red !important;
}
<table>
<tbody>
<tr>
<td></td><td></td><td></td>
<td></td><td></td><td></td>
<td></td>
</tr>
<tr>
<td></td><td></td><td></td>
<td></td><td></td><td></td>
<td></td>
</tr>
<tr class='selected'>
<td></td><td></td><td></td>
<td class='selected'></td><td></td><td></td>
<td></td>
</tr>
<tr>
<td></td><td></td><td></td>
<td></td><td></td><td></td>
<td></td>
</tr>
<tr>
<td></td><td></td><td></td>
<td></td><td></td><td></td>
<td></td>
</tr>
</tbody>
</table>
// 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