I have a generic HTML table with some CSS background color styling. When a user hovers over a row, the background color of all cells in that row is changed to a light gray.
I have a cell in my top row that spans three rows. When I hover over the top row, the cell is shaded appropriately. However, when hovering over the second and third rows, the cell is not shaded.
Is it possible to shade the cell within the 2nd or 3rd row? How would I do that?
Relevant code:
style.css
td {
border: black 1px solid;
text-align: center;
padding-left: 5px;
padding-right: 5px
}
tr:hover td {
background-color: #DDDDDD;
}
th {
border: none;
}
table.html
<tr>
<td>Row 1:Col 1</td>
<td>Row 1:Col 2</td>
<td rowspan=3>Row 1/2/3:Col3</td>
</tr>
<tr>
<td>Row 2:Col 1</td>
<td>Row 2:Col 2</td>
</tr>
<tr>
<td>Row 3:Col 1</td>
<td>Row 3:Col 2</td>
</tr>