Close this window

Using the <tbody> tag

Description The tbody tag identifies the body of a tgroup or entrytbl.
Example
This CNXML:
<table frame="all" id="tictactoe">
  <name>A game of tic-tac-toe</name>
  <tgroup cols="3" align="center">
    <tbody valign="middle">
      <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:
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