| Home > Tables, General
< Previous PageTables, General
Understanding Table HTML
Tables consist of Table Rows and Table Data. Each Row and Data needs to open and close. Find notes on Standard format for graphics in tables, table examples, and other standard formats
<table> = Start of New Table
<table border="0" cellspacing="5" cellpadding="5"> = Settings for table
border="1" will add borders around each cell
cellspacinig controls the space between table cells.
cellpadding sets the amount of space between the contents of the cell and the cell wall.
</table> = End of Table
Table Rows
<tr> = Start of a Table Row
<tr rowspan="6"> = Merging 6 rows into one Row
</tr> = End Table Row
Table Data (Columns)
Each row can contain several columns (data)
<td> = Start of Table Data
<td colspan="6"> = Merging 6 columns into one Column
</td> = End Table Data
Table Header
Data (columns) can be formated to be bold and centered using the table header tag
<th> = Start of Table Header
</th> = End Table Header
Standard Formats
Column Names should be bold and centered. This can be accomplished by using <td><center><b>Text</center></b></td> or
<th>Text</th>
All other column info should be centered when possible
The entire Table should be centered
|
| |