I have a table where the tr is styled with a border. I am looking to eliminate the border from the last td in the tr. Here is an example:
<table>
<thead>
<tr>
<th>a</th>
<th>b</th>
<th>c</th>
<th>d</th>
</tr>
</thead>
<tbody>
<tr style="border-right: 1px solid #C1DAD7;border-bottom: 1px solid #C1DAD7;">
<td> adsd </td>
<td> adsd </td>
<td> adsd </td>
<td> adsd </td> <!-- I want to remove the border from this -->
</tr>
</tbody>
</table>
Any help would be great, thanks!