Close this window

Using the <row> tag

Description

The row tag identifies the row of information in a thead, tbody, or tfoot.

Example

This CNXML:


<table frame="all" id="meyer_briggs">
  <tgroup cols="1" align="center">
    <thead>
      <row>
	<entry>Dichotomies</entry>
      </row>
    </thead>
    <tbody valign="middle">
      <row>
	<entry>Extroverted/Introverted</entry>
      </row>
      <row>
	<entry>Sensing/iNtution</entry>
      </row>
      <row>
	<entry>Thinking/Feeling</entry>
      </row>
      <row>
	<entry>Judging/Perceiving</entry>
      </row>
    </tbody>
  </tgroup>
</table>
	

Results in this display:

Dichotomies
Extroverted/Introverted
Sensing/iNtution
Thinking/Feeling
Judging/Perceiving

Attributes(what's this?)

Children(what's this?)

entry (one or more), entrytbl (one or more)

Parents(what's this?)

thead, tfoot, tbody

Close this window