I created a unique table layout that looks like this:
<table>
<tr class="anHour">
<td class="hour" rowspan="3">9:00</td>
</tr>
<tr class="place">
<td>Place A</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr class="place">
<td>Place B</td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
There are two key features I want to implement:
- When hovering over tr.place, it should also activate the hover effect on tr.anHour (or td.hour).
- When hovering over tr.anHour (or td.hour), it should activate the hover effect on all tr.place elements.
Any ideas on how to achieve this? Let me know!