Tables
| also put background="your_image.gif" as a background, but only Explorer supports table background. </tr> Close the row. <tr> Open new row <td colspan="2">This cell is wider than others because the colspan was set = 2.</td> <td>This text is in a regular cell.</td> <td rowspan="2">This cell has more vertical space because the rowspan was set = 2.</td> <TD> = table data. COLSPAN is the number of columns spanned by the cell. ROWSPAN is the number of rows spanned by the cell. Both have a default at 1. </tr> Close the row. <tr> Open new row <td>This text is in a regular cell.</td> <td>This text is in a regular cell.</td> <td align="right" valign="bottom">This text is right/bottom align.</td> ALIGN is for horizontal. Its default value is "left". VALIGN is for vertical. Its default value is "middle". </tr> </table> Now you know the basics of how to build a table and what table attributes are. You may adjust and use tables in many circumstances. |

