+--------------------------------------+
|............Section.Title.............|
+------------------+-------------------+
|....th1...........|.....th2...........|
+------------------+-------------------+
|....td1...........|.....td2...........|
+--------+---------+-------------------+
|..th3...|......td3....................|
+--------+-----------------------------+
Basically I was trying to do this:
<table style="width:100%">
<tr><th colspan="2">Title</td></tr>
<tr>
<td colspan="2" >
<table style="width:100%" class="innerTable">
<tr><th>th1</th><th>th2</th></tr>
<tr><td>td1</td><td>td2</td></tr>
</table>
</td>
</tr>
<tr>
<th>th3</th>
<td><a href="#">td3</a></td>
</tr>
</table>
and my styles are
table
{
border-collapse:collapse;
}
table, td, th
{
border:1px solid black;
}
-- what I really am looking to do is make everything look like one table rather than a nested table (i.e. the border around the inner table collapsing into the outer table).
I used to do this kind of thing all the time... but apparently I forgot how it is done.

New Topic/Question
Reply



MultiQuote






|