Is there a way to add a bottom border to <tr>
elements without affecting <td>
cells that have no border?
I attempted the following approach, but setting border: 0
for <td>
overrides the border for all <tr>
elements as well, leaving only <thead>
and <th>
with borders!
table.admin_datagrid tbody tr {
border:1px solid red;
}
table.admin_datagrid td{
border: 0;
}