My HTML table looks like this:
<table class="report">
<tbody>
<tr>
<td >col1</td>
<td >col2</td>
<td>col3</td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
</tr>
<tr>
<td>R2</td>
<td >2/17</td>
<td >{2/17}</td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
</tr>
</tbody>
</table>
After col3, all subsequent columns are empty. I want to display only the first three columns and hide the rest. How can I achieve this using CSS? Unfortunately, I am unable to modify the HTML table.
Thanks