February 2006
Beginner
416 pages
11h 35m
English
Create a table tag:
<table> </table>
Insert row tags for as many rows as you need:
<table> <tr></tr> <tr></tr> </table>
Within each row, insert table cell tags for as many cells as you need:
<tr> <td></td> <td></td> </tr>
Type text and/or insert other content, such as images, between the opening and closing table cell tags:
<td>text</td>
<td><img src="filename.ext" /></td>Specifying the Size of a Table
Within the tag:
<table width=n>where n is a percentage (such as 100%) or
a number of pixels (such as 600px).
In a style sheet:
table {width=n}Specifying the Size of a Table
Within the tag:
<table height=n>where n is a percentage (such ...
Read now
Unlock full access