Term
XHTML tables are used to _______ tabular data. |
|
Definition
|
|
Term
Use the HTML tables elements, table, tr, th and td together to create a ______. |
|
Definition
|
|
Term
The _____ element defines and surrounds the entire table. |
|
Definition
|
|
Term
Tables are defined in ____, using the tr element. |
|
Definition
|
|
Term
Each row contains one or more _________ defined with the td element. |
|
Definition
|
|
Term
Use the th element for data cells that are ______ or ______ height. |
|
Definition
|
|
Term
Tables are laid out in a _______. Each row corresponds to a tr... row in your HTML and each column corresponds to the td...content within the rows. |
|
Definition
|
|
Term
You can provide additional information about your tables with the table _______ attriubute and the caption element. |
|
Definition
|
|
Term
Table data cells can having padding, borders, and border spacing, which is the ______ between cells. |
|
Definition
|
|
Term
Just like you can control padding, borders, and margins, of elements, you can control the padding, borders, and bordering spacing of the table with ____. |
|
Definition
|
|
Term
The __________ property is a special CSS property for tables that allow you to combine cell borders inton one border for a clearer look. |
|
Definition
|
|
Term
You can change the alignment of the data in your table cells iwth the ____ and _____ align CSS properties. |
|
Definition
|
|
Term
You can add color to your tables with the ____________ property. Background color can be added to the entire table, to each row, or to a single data cell. |
|
Definition
|
|
Term
If you have no data for a data cell, put no _________ into the td element. You need to use td... element to maintain the alignment of the table, however. |
|
Definition
|
|
Term
If your data cell need to span multiple rows or columns, you can use the ________ or ___________ attribute of the td element. |
|
Definition
|
|
Term
You can _____ tables within tables by placing the table elements and all its content in a data cell. |
|
Definition
|
|
Term
Tabes should be used for __________ data, not for laying out your pages. Use CSS positioning to create multi-column page layouts as we described in Chapter 12. |
|
Definition
|
|
Term
_____ can be styled with CSS just like any other element. There are a few CSS properties specific to lists, such as list-style-type and list-style-image. |
|
Definition
|
|
Term
________________ allows you to change the type of the marker used in your list. |
|
Definition
|
|
Term
________________ allows you to specify an image for your list marker. |
|
Definition
|
|