13.4. Affecting Table Appearance
The HTML table standard provides
many tags for controlling the display of tables. Bear in mind that,
as with most formatting tags, browsers have their own way of
interpreting your instructions, so results may vary among browser
releases and platforms. This is particularly true of tables since the
standard is still being nailed down. As always, it is best to test in
a variety of viewing environments.
It is important to note that some of the attributes that affect
appearance (align, valign, and
bgcolor) have been deprecated by the HTML 4.01
specification in favor of achieving the same effects with style
sheets. Expect the major browsers, however, to continue supporting
the following methods until style sheets are universally supported.
13.4.3. Aligning Text in Cells
By default, the text (or any element) in a
data cell (<td>) is positioned flush left
and centered vertically within the available height of the cell, as
shown in Figure 13-7.
Figure 13-7. Default placement of data within a cell
Table header text
(<th>) is generally displayed in bold text
centered horizontally and vertically in the cell. You can override
these defaults using the align and
valign attributes at either the row or cell level.
- Row Settings
-
Alignment settings specified within the
<tr> tag affect all the table cells
(<td> or <th>)
within that row. This makes it easy to apply alignment changes across
multiple cells.
- Cell Settings
-
Alignment attributes within a cell (<td> or
<th>) apply to the current cell. Cell
settings override row settings. Furthermore, alignment settings
within the contents of the cell (e.g., <p
align=right>) take precedence over both cell
and row settings.
Horizontal alignment is specified with the align
attribute, which takes the standardleft, right, or
center values. These values work the same as
regular paragraph alignment. (The align attribute
has been deprecated in favor of style sheet controls.)
Vertical alignment is controlled using the
valign
attribute,
which can be set to top, middle
(the default), bottom, or
baseline ("first text line appears on a
baseline common to all the cells in the row," but this setting
is not as well supported).
By default, the text in a cell automatically wraps to fill the
allotted space. There is a nowrap attribute which
can be added within the table cell (<td> or
<th>) to keep text on one line (unless
broken by a <br> or
<p>). Unfortunately, most browsers (except
IE 5 and higher) ignore the attribute and wrap the text anyway. When
nowrap is supported, the table cell resizes wider
if it needs to accommodate the line of text.
13.4.6. Coloring Tables
You can
specify a background color for the entire table
(<table>), for selected rows
(<tr>), or for individual cells
(<td> or <th>) by
placing the bgcolor attribute in the appropriate
tag. The bgcolor attribute is recognized by
Internet Explorer Versions 2.0 and higher and Navigator Versions 3.0
and higher.
Color values can be specified by either their hexadecimal RGB values
or a standard color name. For more information on specifying color in
HTML, see Chapter 16, "Specifying Color in HTML".
Color settings in a cell override settings made at the row level,
which override settings made at the table level. To illustrate, in
the following example, the whole table is set to light gray, the
second row is set to medium gray, and the furthest right cell in that
row is set to dark gray. Figure 13-9 shows the
results.
<TABLE BORDER=1 BGCOLOR="#CCCCCC">
<TR>
<TD></TD><TD></TD><TD></TD>
</TR>
<TR BGCOLOR="#999999">
<TD></TD><TD></TD><TD BGCOLOR="#333333"></TD>
</TR>
<TR>
<TD></TD><TD></TD><TD></TD>
</TR>
<TR>
<TD></TD><TD></TD><TD></TD>
</TR>
</TABLE>
Figure 13-9. Effects of setting background colors at cell, row, and table levels
Navigator and Internet Explorer treat
background colors at the table level differently. Navigator fills
every cell in the table with the specified color, but the border
picks up the color of the document background. IE fills the entire
table area, including the borders, with the specified color for a
more unified effect. When you set background colors for individual
cells or rows, it will be displayed the same way on both browsers
(although Navigator uses the document background color for empty
cells).
 |  |  | 13.3. Basic Table Structure |  | 13.5. Table Troubleshooting |
Copyright © 2002 O'Reilly & Associates. All rights reserved.
|