I have a table inside a table. However, I do not want a big space and a line break inside the first cell of the first table (which contains the second). Is this due to the fact that tables are block level instead of in-line? Here's my code:
<html>
<head> TEST1
<title>TABLES</title>
</head>
<body>
<TABLE BORDER="3" CELLPADDING="1" CELLSPACING="1">
<TD CELLPADDING="0" CELLSPACING="0" valign="top" align="center">Unwanted Space and line break
<TABLE valign="top" BORDER="1" CELLPADDING="0" CELLSPACING="0">
<TD CELLPADDING="0" CELLSPACING="0">Table inside a table</TD>
<TR CELLPADDING="0" CELLSPACING="0">
<TD>2nd row of table inside table</TD>
<br/>
</tr>
</TABLE>TEST2
</TD>
<TD> TEST
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</TD>
</TABLE>
</body>
</html>
Any help is appreciated
Bill
<html>
<head> TEST1
<title>TABLES</title>
</head>
<body>
<TABLE BORDER="3" CELLPADDING="1" CELLSPACING="1">
<TD CELLPADDING="0" CELLSPACING="0" valign="top" align="center">Unwanted Space and line break
<TABLE valign="top" BORDER="1" CELLPADDING="0" CELLSPACING="0">
<TD CELLPADDING="0" CELLSPACING="0">Table inside a table</TD>
<TR CELLPADDING="0" CELLSPACING="0">
<TD>2nd row of table inside table</TD>
<br/>
</tr>
</TABLE>TEST2
</TD>
<TD> TEST
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</TD>
</TABLE>
</body>
</html>
Any help is appreciated
Bill