Enter any
text or image in the cell, and Dreamweaver automatically removes the code.
NOTE NOTE
NOTE NOTE
444
Adding Advanced Design Features Part III
Rows
After the opening
tag comes the first row tag ...
pair. Within the current row, you can
specify attributes for horizontal alignment or vertical alignment. In addition, browsers recognize row color
as an added option.
If you are working directly in Code view, you can insert a ...
pair by choosing Insert ??? Table
Objects ??? TR or by clicking the Table Row button in the Tables category of the Insert bar. See ???Inserting
Rows and Columns??? later in this chapter for methods of inserting rows in Design view.
Cells
Cells are marked in HTML with the ... | tag pair. No specific code exists for a column; rather, the
number of columns is determined by the maximum number of cells within a single table row. For example,
in Listing 13-1, notice the three sets of tags between each | pair. This means the table has three
columns.
Most
attributes are better set up using CSS; attributes like bgcolor were deprecated
under HTML 4.0 and XHTML 1.0 specifications and have been removed from XHTML 1.1
entirely.
A cell can span more than one row or column??”in these cases, you see a rowspan=value or
colspan=value attribute in the tag, as illustrated in Listing 13-2.
Pages:
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
|