Term
They are used for tabular data. |
|
Definition
What are XHTML tables used for? |
|
|
Term
|
Definition
What HTML elements should you use to create a table? |
|
|
Term
|
Definition
What element surrounds the entire table? |
|
|
Term
|
Definition
Tables are defined in rows using the tr element.
True or False? |
|
|
Term
|
Definition
Each row contains one or more ____ _____ defined with the td element. |
|
|
Term
|
Definition
What element should you use for data cells that are row or column headings? |
|
|
Term
|
Definition
Tables are laid out in a grid. Each row corresponds to __...__ and each column corresponds to __...__. |
|
|
Term
You can use the table summary attribute and the caption element. |
|
Definition
How can you provide additional information about your table?
HINT : There are 2 ways. |
|
|
Term
Data cells have padding, borders, and border-spacing (the space between cells). |
|
Definition
Data cells in a table have what three things? |
|
|
Term
|
Definition
You can control the padding, margins, borders, and border spacing of a table with ___? |
|
|
Term
|
Definition
What property allows the borders to combine for a cleaner look? |
|
|
Term
|
Definition
You can change the alignment of the data in your table cells with the ____-_____ and vertical ______ CSS properties. |
|
|
Term
Background color can be added to the entire table, each row, each column or a single data cell. |
|
Definition
How can you add color to your table with the background-color property? |
|
|
Term
Put "no content" into the td element. You'll still need to use a td.../td element to keep the alignment of the table though. |
|
Definition
What do you do if you have no data for a data cell? |
|
|
Term
You use rowspan or colspan attributes of the td element. |
|
Definition
What do you do if you need a data cell to span multiple row or column? |
|
|
Term
Yes, you can. You place a new table and all of its content inside a data cell of another table. |
|
Definition
Can you nest tables inside of tables? |
|
|
Term
Tabular data, not layouts. Use CSS for those. |
|
Definition
Tables should be used for what? |
|
|
Term
This allows you to change the type of marker you use in your list. |
|
Definition
list-style-type allows you to do what? |
|
|
Term
Specify an image for you list marker. |
|
Definition
list-style-image allows you to do what? |
|
|