Task :
- Implement a highlighted background color for selected table rows using CSS or other methods
Current Table HTML :
<table id="ember11999" class="ember-view content-table focus-group ovalview object-table container-view highlighted">
<tbody id="ember12032" class="ember-view body-view container-view">
<tr id="ember12347" class="ember-view content-row body-row-view container-view" tabindex="0" aria-label="">
<td>...</td>
<td>...</td>
</tr>
</tbody>
</table>
CSS Attempt :
table.content-table.ovalview.highlighted tr.content-row {
background: #FFFF99 none 0 0 repeat;
}
Upon testing the above code, the background color applied to the entire table instead of just the selected row.