Hello there, I am currently trying to figure out how to remove the border from my table.
Below is the code I have attempted:
<table class="table table-responsive" style="border:none">
<tr>
<th>First name</th>
<th>Last name </th>
</tr>
<tr>
<td>Tima</td>
<td>Zahra</td>
</tr>
<tr>
<td>Emily</td>
<td>SMITH</td>
</tr>
</table>
Unfortunately, my attempt did not work. Can someone please provide me with some guidance on this issue? Apologies for any language barriers and thanks in advance for your understanding!