The header section of a table.
Table head elements contain <cell> elements.
See the <table> element for more information on creating tables.
No attributes other than standard attributes are defined for <head> elements.
Element name | Description |
---|---|
<cell> | A cell in the table header. |
Element name | Relation |
---|---|
<table> | The owning table. |
<document xmlns="http://boradoc.org/1.0"> <chapter> <table> <head> <cell>header cell 1</cell> <cell>header cell 2</cell> </head> </table> </chapter> </document>
The above BDML renders to the following:
header cell 1 | header cell 2 |
---|