PDA

View Full Version : Simple (I hope) table issue...HELP!



SunDancer
30 Mar 2008, 03:52 PM
So the evil table gods are smiting me again... :wall:

I just want to make a table row that looks like this:
http://sundancerdesign.com/trprob.gif

I'm using on this page:
http://nuovesales.com/NO_EL/specs.html

All I want to do is add a another row in the top section, "Features, Specifications" that spans the right 2 columns, but that allows the left column to cover it, so it is included in the "Feautures, Specifications" row.

Is this possible??
:confused:

Thanks for any help!

electrickeye
30 Mar 2008, 04:02 PM
Yes it is. Quite easy actually. here's the code for the table you want.

<table border="1">
<tr>
<td rowspan="4"></td>
<td colspan="2"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>

just brush up on your colspans and rowspans and you should be good