Chapter 8 - Table Markup Flashcards

1
Q

tabular material

A

data arranged into rows and columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

CSS Tables

A

nested divs provide the markup and CSS Table properties make them behave like rows and cells in the browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

<table>...</table>

A

tabular content (rows and columns)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

<tr>...</tr>

A

table row

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

<th>...</th>

A

table header

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

<td>...</td>

A

table cell data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

spanning

A

the stretching of a cell to cover several rows or columns, allowing you to create complex table structures

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

column spans

A

stretch a cell to the right to span over the subsequent columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

row spans

A

work like column spans, but they cause the cell to span downward over several rows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

<caption>...</caption>

A

title or description to be displayed with the table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

<thead>...</thead>

A

table header row group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

<tbody>...</tbody>

A

table body row group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

<tfoot>...</tfoot>

A

table footer row group

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

user agent

A

browser

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

<colgroup>...</colgroup>

A

a semantically related group of columns

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

<col></col>

…</col>

A

one column in a column group

17
Q

What are the parts (elements) of a basic HTML table?

A

The table itself (table), rows (tr), header cells (th), data cells (td), and an optional caption (caption).

18
Q

What elements can a table contain directly? (i.e., first-level children)?

A

The table element can directly contain tr, cpation, colgroup, thead, tbody, and tfoot elements.

19
Q

What elements can a tr contain?

A

The tr element can contain only some number of th and td elements.

20
Q

When would you use the col (column) element?

A

Use the col element if you wan tto include additional information about the structure of a table, to specify widths to speed up display, or to add certain style properties to a column of cells.