Close this window

Using the <tbody> tag

Description

The tbody tag identifies the body of a tgroup or entrytbl.

Example

This CNXML:


<table id="tictactoe" summary="A 3 by 3 table 
    representing a completed game of tic tac toe 
    in which neither player has won.">
  <title>A game of tic-tac-toe</title>
  <tgroup cols="3">
    <tbody>
      <row>
        <entry>x</entry>
        <entry>o</entry>
        <entry>x</entry>
      </row>
      <row>
        <entry>o</entry>
        <entry>x</entry>
        <entry>o</entry>
      </row>
      <row>
        <entry>o</entry>
        <entry>x</entry>
        <entry>o</entry>
      </row>
    </tbody>
  </tgroup>
</table>
        

Results in this display:

Table 1: A game of tic-tac-toe
x o x
o x o
o x o

Attributes(what's this?)

Children(what's this?)

row (one or more)

Parents(what's this?)

tgroup, entrytbl
Close this window