So let's say I have a table like this one:
<table>
<tr>
<td class="t"></td>
<td class="e"></td>
<td class="s"></td>
<td class="t"></td>
</tr>
</table>
I have a spritesheet containing 4 different images of the same size. So I used simple CSS background-position
to position a background for each table cell. Here's my question:
Is there any way (jQuery or pure CSS - it doesn't matter) to change ALL td background-position
s only on Y axis on mouse hover?