HTML Table Borders: The Basics
The most basic issue concerning table borders is if there should be any borders at all. That issue is settled with the
By default, tables do not have borders. For example, this code, which does not have any attributes in the
<TABLE> <TR> <TD>watermelon</TD> <TD>grapes</TD> </TR> <TR> <TD>peaches</TD> <TD>bananas</TD> </TR> </TABLE> which gives us
To give the table borders we add the
<TABLE BORDER> which gives us this table
<TABLE BORDER=10> which gives us this table
Note that Table Borders: BORDER, FRAME and RULES > |