I'm currently dealing with a table that is displayed in the jsFiddle link provided below. I want to achieve a highlight effect on the background color when hovering over it. While I have managed to make it work for the most part, there seems to be dead spots which I suspect are due to the overlapping of the box model as a result of rotating the divs 45 degrees.
View Example on jsFiddle :: When you mouse over the lower section of each header or any part of the last header, you'll notice the background lights up. However, there are some areas that don't respond as expected on the preceding headers.
<table>
<thead>
<tr>
<th class="rotateHeader">
<div>
<span>This is my title</span>
</div>
</th>
<th class="rotateHeader">
<div>
<span>This is my title</span>
</div>
</th>
<th class="rotateHeader">
<div>
<span>This is my title</span>
</div>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>100</td>
<td>100</td>
<td>100</td>
</tr>
</tbody>
</table>
If anyone has suggestions on how I can ensure the entire div of each header highlights when hovered over, please share your ideas!