Here is my table: (I know I had to use divs instead of tables)
<table class="table-fill">
<thead>
<tr class="">
<th class="text-top">
<i class="fa fa-comments"></i></th>
<th class="text-top">Service & Support</th>
</tr>
</thead>
<tbody class="table-hover">
<tr>
<td class="text-left"><span class="dashicons dashicons-arrow-right-alt2"></span></td>
<td class="text-left">TableData1</td>
</tr>
<tr>
<td class="text-left"><span class="dashicons dashicons-arrow-right-alt2"></span></td>
<td class="text-left">TableData2</td>
</tr>
<tr>
<td class="text-left"><span class="dashicons dashicons-arrow-right-alt2"></span></td>
<td class="text-left">TableData3</td>
</tr>
<tr>
<td class="text-left"><span class="dashicons dashicons-arrow-right-alt2"></span></td>
<td class="text-left">TableData4 </td>
</tr>
<tr>
<td class="text-left"></td>
<td class="text-left"></td>
</tr>
</tbody>
</table>
.text-left:hover .table-fill {
box-shadow: 0 26px 74px rgba(0, 0, 0, 0.69);
}
.text-left:hover .text-top {
background:#fff;
color:#4E5066;
}
I've tried .text-left:hover ~ .table-fill
, .text-left:hover + .table-fill
and .text-left:hover > .table-fill
but this didn't work.
I also looked Here, Here and Here, but this was not fixing my problem.
I want to avoid jQuery if possible.