TABLE Data Display 8

Displaying your data in your table

Row 1 duck Cell 3 duck Cell 5
Row 2 duck Cell 4
Row 3
spacer 2

TABLE Data Display - Table Titles

The "title" attribute can be used in all of the table elements.  It is not used very often, if at all. The "title" attribute causes a title to appear on the screen when the reader places the curser over the table, row or cell that contains the title.

Example 1 Using "title" in the Table, Row and Cell

<tr>
  <td align="center">
    <table title="Example 1" height="300" width="500" bgcolor="#FFFF00" border="7" style="border-color:#900" cellpadding="5">
      <tr class="trtext1" title="Row 1">
        <th width="60%">File Name</th>
        <th width="40%">Submitter</th>
      </tr>
      <tr bgcolor="#FFFF99">
        <td title="Row 2 Cell 1">File for research purposes</td>
        <td bgcolor="#FF6699">Bryant Walker</td>
      </tr>
    </table>
  </td>
</tr>
File Name Submitter
File for research purposes Bryant Walker

Hold your cursor over the Table, Row 1 or Row 2 Cell 1 to see the title appear on the page.

CLICK for Discussion of HTML Problems


Previous Page Next Page