Term
___________ are used to structure tabular data. |
|
Definition
|
|
Term
Use the HTML table elements (4) 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 ______. 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 _________ attribute and the _______ element. |
|
Definition
|
|
Term
Table data cells can have padding, borders, and ______________, which is the space between cells. |
|
Definition
|
|
Term
Just like you can control the padding, borders, and margins of elements, you can control the padding, borders, and border spacing of table cells with ______. |
|
Definition
|
|
Term
The _________ property is a special CSS property for tables that allows you to combine cell borders into one border for a cleaner look. |
|
Definition
|
|
Term
You can change the alignment of the data in you table cells with the ________ and ______ CSS properties. |
|
Definition
text-align
vertical-align |
|
|
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 _________ into the td element. You need to use a td element to maintain the alignment of the table, however. |
|
Definition
|
|
Term
If your data cell needs to span multiple rows or columns, you can use the _________ or ________ attributes of the td element. |
|
Definition
|
|
Term
You can ________ tables within table by placing the table element and all its content inside a data cell. |
|
Definition
|
|
Term
Tables should be used for _________, not for laying out your pages. Use CSS positioning to create multicolumn layouts as we described in Chapter 12. |
|
Definition
|
|
Term
List can be styled with CSS just like any other element. There are a few CSS properties specific to lists, such as _______ and _______ |
|
Definition
list-style-type
list-style-image |
|
|
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
|
|