Tables are useful for arranging data (text, images, links, other tables, etc...) into rows and columns of cells.
To create the most basic table you'll need:
Here is a simple 3 row x 3 column table:
|
Fruit |
Cost (lb.) |
Amount (lbs) |
|---|---|---|
|
apples |
$1.89 |
1 |
bananas |
$.99 |
2 |
<table border=1>
<tr>
<th>Fruit</th><th>Cost (lb.)</th><th>Amount(lbs)</th>
</tr>
<tr>
<td>apples</td><td>$1.89</td><td>1</td>
</tr>
<tr>
<td>bananas</td><td>$.99</td><td>2</td>
</tr>
</table>
And here is another basic table (having only one cell and one row and column!):
|
|
<table border=10>
<tr><td>
You can put a border around anything!
</td></tr>
</table>
No matter how complex the table is (or isn't!), it is very important to organize
the code carefully by indenting clearly and nesting tags properly.
To make more interesting tables:
Here is our simple table from earlier using these new features:
|
Fruit |
Cost (lb.) |
Amount (lbs) |
|---|---|---|
|
apples |
$1.89 |
1 |
|
bananas |
$.99 |
2 |
| oranges |
Not available |
|
<table border=1 summary="This table charts the cost and amount of different fruits.">
<caption>Fruits</caption>
<tr>
<th>Fruit</th><th>Cost (lb.)</th><th>Amount (lbs)</th>
</tr>
<tr>
<td>apples</td><td>$1.89</td><td>1</td>
</tr>
<tr>
<td>bananas</td><td>$.99</td><td>2</td>
</tr>
<tr>
<td>oranges </td><td colspan=2><em> Not available</em> </td>
</tr>
</table>
Additional attributes control:
Adding some of these to our table (where CELLSPACING=10 CELLPADDING=20):
|
Fruit |
Cost (lb.) |
Amount (lbs) |
|---|---|---|
|
apples |
$1.89 |
1 |
|
bananas |
$.99 |
2 |
|
oranges |
Not available |
|
Using TextWrangler, write an html file to produce this table. Note that you will need to make local copies of the images sidecs110.gif and gdome.gif on your desktop.
One way to center a table is to use the align="center"
attribute, but not all browsers do that correctly. To center using CSS
(preferred in this class), you could use one of the techniques described
in this web page on centering
a table with CSS. The following example uses method 2.
| Here is a bunch of text that is put in a table with a width of 40% consisting of two cells. The table as a whole is centered. | Here is another chunk of text. There's nothing interesting to read here, really. |
One interesting use of tables is for image collages and imagemaps. The idea is to create a table with pieces of an image that, as a puzzle, compose the overall image. Now each table element could be hyperlinked to the relevant page.
An extra benefit of using a table to compose an image is that pieces of the overall picture can be animated independently. See for example the Recycled, Re-Seen introduction that is made of a matrix of only three animated components (One, Two, Three). The underlying table structure looks like this.
Optional reading: Meyers Chapters 12-13, Williams p.234-235..
© Computer Science 110 Staff
This work is licensed under a Creative Commons License
Date Modified:
Tuesday, 12-Feb-2008 16:24:12 EST