Table Code

liunx

Guest
Is it possible to have... <br />
<br />
<br />
___________<br />
| | | | <br />
| | | |<br />
| |-----| |<br />
| | | |<br />
|_|_____|_|<br />
<br />
<br />
... Without having 2 tables?<br />
<br />
Cause I am trying to have no spacing ANYWHERE. With 2 tables, I get spacing no matter what I do.<!--content-->what do you mean spacing? doesn't matter how many tables you use, there shouldn't be any spacing.<!--content-->If the middle part has to contain text, and left and right has to be empty use blockquote.<br />
<br />
<blockquote> <blockquote><br />
your text here<br />
</blockquote></blockquote><br />
<br />
<br />
<br />
:rocker:<!--content-->Nevermind. I figured it out. I didn't put cellpadding=0 and cellspacing=0 on the tables.<!--content-->i know you said you figured it out, but you can use one table with using the ROWSPAN attribute for certain TD cells.<!--content-->this should do it<br />
<br />
<table width="800"><br />
<tr><br />
<td width="200" rowspan="2"> </td><br />
<td width="400"> </td><br />
<td width="200" rowspan="2"> </td><br />
</tr><br />
<tr><br />
<td width="33%"> </td><br />
</tr><br />
</table><!--content-->
 
Back
Top