Term
XHTML tables are used to structure _______ data. |
|
Definition
|
|
Term
Use the XHTML table elements, _____, __, __, and __ together to create a table. |
|
Definition
|
|
Term
The _____ element defines and surrounds the entire table. |
|
Definition
|
|
Term
Tables are defined in rows, using the __ element. |
|
Definition
|
|
Term
Each row contains one or more data cells, defined with the __ element. |
|
Definition
|
|
Term
Use the __ element for data cells that are row or column headings. |
|
Definition
|
|
Term
Tables are laid out in a grid. Each row corresponds to a __...__ row in your HTML, and each column corresponds to the __...__ content within the rows. |
|
Definition
|
|
Term
You can provide additional information about your tables with the table summary attribute, and the _______ element. |
|
Definition
|
|
Term
Table data cells can have padding, borders, and border spacing, which is teh space between _____. |
|
Definition
|
|
Term
Just like you can control the padding, borders, and margins of elements, you can control the _______, ______, and _____ _______ of table cells with CSS. |
|
Definition
padding, borders, and border spacing |
|
|
Term
The _____-_________ property is as special CSS property for tables that allows you to continue cell borders into one border for a cleaner look. |
|
Definition
|
|
Term
You can change the alignment of the data in your table cells with the ___-_____ and _______-_____ CSS properties |
|
Definition
text-align vertical-align |
|
|
Term
You can add color to your tables with the __________-_____ property. Bakcground color can be added to the entire table, each row, or to a single cell. |
|
Definition
|
|
Term
If you have no data for a data cell, put no _______ into the TD element. You need to use a TD..TD elements to maintain the alignment of teh table, however. |
|
Definition
|
|
Term
if your data cell needs to span muliple rows or columns, you ca nuse the ______ or _______ attributes of teh TD element. |
|
Definition
|
|
Term
You can ____ tables within tables by placing the TABLE element and all its content inside a data cell. |
|
Definition
|
|
Term
Tables should be used for tabular data, not for ______ out your pages. Use CSS positinong to create multi-column page layouts. |
|
Definition
|
|
Term
List can be ______ with CSS just like any other elements. 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
|
|