PDA

View Full Version : why does this <table> add an extra colum ? - SOLVED! ( missed a /TD. )


Vaupell
05-04-2010, 07:00 PM
i have a problem, creating a table which aparently is adding
another row..

116687

code :
<table border="1" style="border-style:dotted;" width="50%" >
<tr><td colspan="2" align="center"> {vb:rawphrase egc_mysettings_basicstat} <td></tr>
<tr valign="top" align="center"><td width="50%"> Score : </td><td>100</td></tr>
</table>

there are "no other tables" around this one.. its a blank template..

it doesent even show border in ie8 :p without color and thickness attached in style.

suggestions ?

Vaupell
05-04-2010, 07:08 PM
solved

forgot to close a single TD..
this is working code..

<table border="1" style="border-style:dotted;" width="50%" >
<tr><td colspan="2" align="center"> {vb:rawphrase egc_mysettings_basicstat} </td></tr>
<tr valign="top" align="center"><td width="50%"> Score : </td><td>100</td></tr>
</table>