table
Element information
Namespace: http://www.w3.org/1999/xhtml
Schema document: xhtml1-frameset.xsd
Type: Anonymous
Properties: Global, Qualified
Content
- Sequence [1..1]
- caption [0..1]
- Choice [1..1]
- col [0..*] col elements define the alignment properties for cells in one or more columns. The width attribute specifies the width of the columns, e.g. width=64 width in screen pixels width=0.5* relative width of 0.5 The span attribute causes the attributes of one col element to apply to more than one column.
- colgroup [0..*] colgroup groups a set of col elements. It allows you to group several semantically related columns together.
- thead [0..1]
- tfoot [0..1]
- Choice [1..1]
Attributes
Name | Occ | Type | Description | Notes |
---|---|---|---|---|
id | [0..1] | xsd:ID | from group coreattrs | |
class | [0..1] | xsd:NMTOKENS | from group coreattrs | |
style | [0..1] | StyleSheet | from group coreattrs | |
title | [0..1] | Text | from group coreattrs | |
lang | [0..1] | LanguageCode | from group i18n | |
xml:lang | [0..1] | Anonymous | from group i18n | |
dir | [0..1] | Anonymous | from group i18n | |
onclick | [0..1] | Script | from group events | |
ondblclick | [0..1] | Script | from group events | |
onmousedown | [0..1] | Script | from group events | |
onmouseup | [0..1] | Script | from group events | |
onmouseover | [0..1] | Script | from group events | |
onmousemove | [0..1] | Script | from group events | |
onmouseout | [0..1] | Script | from group events | |
onkeypress | [0..1] | Script | from group events | |
onkeydown | [0..1] | Script | from group events | |
onkeyup | [0..1] | Script | from group events | |
summary | [0..1] | Text | ||
width | [0..1] | Length | ||
border | [0..1] | Pixels | ||
frame | [0..1] | TFrame | ||
rules | [0..1] | TRules | ||
cellspacing | [0..1] | Length | ||
cellpadding | [0..1] | Length | ||
align | [0..1] | TAlign | ||
bgcolor | [0..1] | Color |
Used in
- Group block
- Type button.content
- Anonymous type of element applet via reference to block
- Anonymous type of element blockquote via reference to block
- Anonymous type of element body via reference to block
- Anonymous type of element button via extension of button.content
- Anonymous type of element center via reference to block
- Anonymous type of element dd via reference to block
- Anonymous type of element del via reference to block
- Anonymous type of element div via reference to block
- Anonymous type of element fieldset via reference to block
- Anonymous type of element form via reference to block
- Anonymous type of element iframe via reference to block
- Anonymous type of element ins via reference to block
- Anonymous type of element li via reference to block
- Anonymous type of element map via reference to block
- Anonymous type of element noscript via reference to block
- Anonymous type of element object via reference to block
- Anonymous type of element td via reference to block
- Anonymous type of element th via reference to block
- Type Flow via reference to block
- Type form.content via reference to block
Sample instance
<table> <caption>Any text, intermingled with: <a>Any text, intermingled with: <br/> </a> </caption> <col/> <thead> <tr> <th>Any text, intermingled with:... </th> </tr> </thead> <tfoot> <tr> <th>Any text, intermingled with:... </th> </tr> </tfoot> <tbody> <tr> <th>Any text, intermingled with:... </th> </tr> </tbody> </table>