Chapter 8 - Table Markup Flashcards
tabular material
data arranged into rows and columns
CSS Tables
nested divs provide the markup and CSS Table properties make them behave like rows and cells in the browser
<table>...</table>
tabular content (rows and columns)
<tr>...</tr>
table row
<th>...</th>
table header
<td>...</td>
table cell data
spanning
the stretching of a cell to cover several rows or columns, allowing you to create complex table structures
column spans
stretch a cell to the right to span over the subsequent columns
row spans
work like column spans, but they cause the cell to span downward over several rows
<caption>...</caption>
title or description to be displayed with the table
<thead>...</thead>
table header row group
<tbody>...</tbody>
table body row group
<tfoot>...</tfoot>
table footer row group
user agent
browser
<colgroup>...</colgroup>
a semantically related group of columns