An Introduction to XHTML - The table structure
(Page 4 of 5 )
One thing that XHTML has improved upon is the table structure. All table-formatting tags have been deprecated in favour of CSS, but there are several new structural elements that can be used when working with tables. Although these elements could be classed as formatting elements, they are more focused on creating the physical structure and layout of the table rather than changing the appearance of existing table elements.
The new elements are:
- thead
- tbody
- tfoot
- colgroup
- col
To see how these elements work, create an XHTML file as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>XHTML Table Elements</title>
</head>
<body>
<table>
<thead>
<tr>
<th colspan="2">XHTML Elements</th>
<th colspan="2">Rules to Remember<th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="4">Remember these simple rules and XHTML will be easy!</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>1</td>
<td>Use DTD Declaration</td>
<td>1</td>
<td>Close all elements correctly</td>
</tr>
<tr>
<td>2</td>
<td>Use the namespace declaraton</td>
<td>2</td>
<td>nest elements correctly</td>
</tr>
<tr>
<td></td>
<td></td>
<td>3</td>
<td>Enclose all attributes in quotes</td>
</tbody>
</table>
</body>
</html>
This is an extremely basic example and does not encapsulate all of the XHTML rules of structure and syntax! I have omitted the <colgroup> and <col> elements as these seem to work solely with the "align" attribute, which shouldn't really be used.
The form structure of XHTML is extremely similar to that of HTML with the exception of the File input type. Using this form control will allow users accessing a form to upload files to the server. This control can be used in the following way:
<input type="file" accept="image/*" />
This will allow any image type to be uploaded. The file types that can be entered as values of the accept attribute are MIME types. Additionally, the frameset structure is exactly the same, just remember to use the frameset DTD!
Next: Namespace awareness >>
More HTML Articles
More By Dan Wellman