HTML Table
in d following code...
it creates some space at d bottom....
i.e. the white space bello the green table...how one can remove that
space
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
</head>
<body>
<TABLE id="Table1" cellSpacing="0" cellPadding="0" width="409" border="0" style="WIDTH: 409px; HEIGHT: 88px">
<TR>
<TD>hello</TD>
</TR>
<TR>
<TD valign="bottom">
<TABLE id="Table2" style="WIDTH: 408px; HEIGHT: 32px" cellSpacing="1" cellPadding="1" width="408"
bgcolor="#009933" border="1">
<TR>
<TD></TD>
<TD></TD>
<TD></TD>
</TR>
<TR>
<TD></TD>
<TD></TD>
<TD></TD>
</TR>
<TR>
<TD></TD>
<TD></TD>
<TD></TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</body>
</html>
|