
| The WIDTH= and HEIGHT= attributes are used to customize the size of Tables or Cells. They are placed within the beginning <TABLE> <TH> or <TD> tags.
By typing this:
<TABLE BORDER=1 WIDTH=350 HEIGHT=110>
<TR>
<TH>Odd Numbers</TH>
<TH>Even Numbers</TH>
</TR>
<TR>
<TD>1</TD>
<TD>2</TD>
</TR>
<TR>
<TD>3</TD>
<TD>4</TD>
</TR>
</TABLE>
|
||||||||||||||||
| Or a single cell size can be changed.
<TABLE BORDER=1>
<TR>
<TD></TD>
<TH>Odd Numbers</TH>
<TH>Even Numbers</TH>
</TR>
<TR>
<TH ROWSPAN=2 WIDTH=220>
The<BR>First<BR>Four<BR>Numbers</TH>
<TD>1</TD>
<TD>2</TD>
</TR>
<TR>
<TD>3</TD>
<TD>4</TD>
</TR>
</TABLE>
|