Term
| XHTML [a] are used to structure [b] data |
|
Definition
|
|
Term
| Use the HTML table elements [a], [b], [c], and [d] together to create a table. |
|
Definition
| [a] TABLE [b] TR [c] TH [d] TD |
|
|
Term
| The [a] element defines and surrounds the entire table. |
|
Definition
|
|
Term
| Tables are defined in [a], using the [b] element. |
|
Definition
|
|
Term
| Each [a] contains one or more [b], defined with the [c] element. |
|
Definition
| [a] row [b] data cells [c] TD |
|
|
Term
| Use the [a] element for data cells that are row or column headings. |
|
Definition
|
|
Term
| Tables are laid out in a [a]. |
|
Definition
|
|
Term
| Each row [a] to a TR ... /TR row in your HTML, and each column [a] to the TD ... /TD content within rows. |
|
Definition
|
|
Term
| You can provide additional information about your tables with the [a] attribute, and the [b] element. |
|
Definition
| [a] table summary [b] caption |
|
|
Term
| [a] can have padding, borders, and border spacing, which is the space between cells. |
|
Definition
|
|
Term
| Just like you can control the padding, border, and margin of elements, you can control the padding, borders, and border spacing of [a] with CSS. |
|
Definition
|
|
Term
| You can change the alignment of the data in your table cells with the [a] and [b] CSS properties. |
|
Definition
| [a] text-align [b] vertical-align |
|
|
Term
| You can add color to your tables with the [a] property. |
|
Definition
|
|
Term
| [a] can be added to the entire table, to each row, or to a single data cell. |
|
Definition
|
|
Term
| If your data cell needs to span multiple rows or columns, you can use the [a] or [b] attributes of the TD element. |
|
Definition
|
|
Term
| You can nest tables within tables by placing the [a] element and all its content inside a data cell. |
|
Definition
|
|
Term
| Tables should be used for [a], not for laying out your page. |
|
Definition
|
|
Term
| [a] can be styled with CSS just like any other element. |
|
Definition
|
|
Term
| There are a few CSS properties specific to lists, such as [a] and [b]. |
|
Definition
| [a] list-style-type [b] list-style-image |
|
|
Term
| [a] allows you to change the type of the marker used in your list. |
|
Definition
|
|
Term
| [a] allows you to specify an image for your list marker |
|
Definition
|
|
Term
| If you have no data for a data cell, put no content into the [a] element. |
|
Definition
|
|
Term
| The [a] property is a special CSS property for tables that allows you to combine cell borders into one border for a cleaner look. |
|
Definition
|
|