I have a specific table structure that I need to work with:
<table>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
My goal is to add borders to all td elements within the table, except for the first one. Unfortunately, adding class attributes to the structure is not an option.
How can I achieve this using only css?