All Seeing Eyes Administrator
     member is offline
Joined: Jul 2004 Posts: 54
|  | Visualising a Table « Thread Started on May 16, 2007, 3:04pm » | |
Here is a basic table in graphic form
![[image]](http://www.allseeingeyes.info/webimg/table1.gif)
If you follow through each square from top left to bottom right, this is the resulting code
<table> <tr> <td> <table> <tr> <td> *note 1 This is where you would add content in the top cell </td> </tr> <tr> <td> content in bottom left cell </td> <td> content in bottom right cell </td> </tr> </table> </td> </tr> </table>
*note 1 because this cell 'spans' 2 other cells, a 'colspan' attribute will need to be added <td colspan="2"> more about this later.
| |
|