1
I’m creating a table, but on the site always appear the lines that separate the columns and rows. Can someone 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>
In its second line, in the last column, there is
<<td
. Please confirm that this was not a typo in the question or if your code is the same. This breaks the HTML syntax.– Woss
Your table is already without the lines!! Just got a bug like Anderson said.
– LeAndrade