<head>

Description

The header section of a table.

Table head elements contain <cell> elements.

See the <table> element for more information on creating tables.

Attributes

No attributes other than standard attributes are defined for <head> elements.

Immediate descendants

Element name Description
<cell> A cell in the table header.

Immediate ancestors

Element name Relation
<table> The owning table.

Example

<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