I have a generic class that I use for table rows that changes background-colorits td when they freeze. I use it throughout my application.
.enty-table {
&:hover > td {
background-color: lightblue;
}
}
<table class="table table-bordered">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Min Length</th>
<th>Max Length</th>
<th>Min Value</th>
<th>Max Value</th>
<th>Regular Expr</th>
<th>Default Value</th>
</tr>
</thead>
<tbody>
<tr class="enty-table">
<td class="columnCategory">Business Fields</td>
<td><strong>new column1</strong></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
</tr>
<tr class="enty-table">
<td><strong>new column2</strong></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
<td><span></span></td>
</tr>
</tbody>
</table>
Now I have a special table (2 dimensional), where in the first column I have td with rowspan.

In the end, I want to get rid of changing the background color when I hover over rowspan td lines:

When I am on Business Fieldstd, the hover effect is applied to the line new column1, but when I find on the second line, it does not apply to td with rowspan. I want to fix this by removing the hover action from the first td.
How can I avoid the hover effect on rowspan td, but save it for table rows (separate captions - new column1, new column2)?
CSS?