Can you help me out with this html table?

Nik

New member
The code below is supposed to display a table with two rows the first row only has one cell the second row has two cells both of which share the 100% space declared in the main table tag 50-50
the div tag is just a fancy css menu refers to externally the random letters are to show you the error.

When the code is run in an html document it displays the table fine but the final td tag displays out side of the table so the second row first cell takes up 100% of the width for the life of me I can't spot any error can you please help me out with this its driving me crazy.



<table width="100%">
<tr>
<td width="100%">
<div class="menu bubplastic horizontal">example</div>
</td>
</tr>
<tr>
<td width="50%">
gsagadf
</td>
<td width="50%">
fdagfdgda
</td>
</tr>
</table>

Thanks for any help
 
Back
Top