Term
What are XHTML tables used for? |
|
Definition
To structure tabular data. |
|
|
Term
What elements do you use to make a XHTML table? |
|
Definition
|
|
Term
Which element defines and surrounds a XHTML table? |
|
Definition
|
|
Term
What does the tr element do? |
|
Definition
|
|
Term
How do you add more cells to a row? |
|
Definition
Each row contains one or more data cells, defined with the td element. |
|
|
Term
What is the th element for? |
|
Definition
|
|
Term
Tables are laid out in a _____? |
|
Definition
|
|
Term
How can you provide additional information about the table? |
|
Definition
With the summary and caption attribute. |
|
|
Term
|
Definition
|
|
Term
What parts of a table can you control using css? |
|
Definition
Padding, borders, and border spacing. |
|
|
Term
What does the border-collapse property do? |
|
Definition
It allows you to combine cell borders into one border for a cleaner look. |
|
|
Term
How can you change the alignment of the data in your table? |
|
Definition
With the text-align and vertical-align properties. |
|
|
Term
How do you change the color of your table? |
|
Definition
the background-color property. color can be added to the entire table, to each row, or to a singel data cell. |
|
|
Term
What if you have no data to put in a data cell? |
|
Definition
put no content in the td element. |
|
|
Term
How do you make a cell span multiple cells? |
|
Definition
|
|
Term
|
Definition
Put a table element inside a cell. |
|
|
Term
What should we not use tables for? |
|
Definition
|
|
Term
|
Definition
using css, such as list-style-type and list-style-image. |
|
|
Term
What does list-style-type do? |
|
Definition
allows you to change the type of the marker used in your list. |
|
|
Term
What does list-style-image do? |
|
Definition
allows you to specify an image for your list marker. |
|
|