I am creating a table, but on the site the lines that separate the columns and rows always appear. Can anyone tell me how I could do to get them out?
The code I have is this:
<table>
<tbody>
<tr>
<td bgcolor="white" width="175">Lorem ipsum dolor sit amet</td>
<td bgcolor="white" width="25"></td>
<td bgcolor="white">Lorem ipsum dolor sit amet,
</td>
</tr>
<tr>
<td bgcolor="white">Lorem ipsum dolor sit amet</td>
<td bgcolor="white" width="25"></td>
<<td bgcolor="white">Lorem ipsum dolor sit amet,</td>
</tr>
<tr>
<td bgcolor="white">Lorem ipsum dolor sit amet</td>
<td bgcolor="white" width="25"></td>
<td bgcolor="white">Lorem ipsum dolor sit amet,
</td>
</tr>
</tbody>
</table>