|
||
CATEGORIES Home Getting Started HTML Cheat Sheet Webmaster Tools HTML Help Forum Color Codes Link to us |
||||
You can combine cells in a row to make one large cell. How to do it To span a cell, in your <TH> or <TD> tag that you want to span down rows, type ROWSPAN="?". Next replace the ? with the number of rows you want the cell to span down. Your code should look like this: <TH ROWSPAN="?"> or <TD ROWSPAN="?"> EXAMPLE <TABLE BORDER="5"> <TR> <TH ROWSPAN="4">Football Stats</TH></TR> <TR> <TD>Eagles</TD></TR> <TR> <TD>Jets</TD></TR> <TR> <TD>Little Giants</TD></TR> </TABLE> Seeing this in the browser would look like this:
Privacy Policy | Trademark Notices | User Agreement © 2001 TheHTMlSource.com, INC. All Rights Reserved. |