Chapter 9
Which of the following CSS3 pseudo-elements could be used to apply styles to the last row of a table?
A.) :last-of-type
Is the following CSS code valid? table { border: 2px #000000 solid; border-spacing: 0; }
A.) Yes
A table with a width set to 600 pixels will look _______ on a monitor with resolution set to 640 x 480 than on a monitor with resolution set to 1024 x 768
A.) larger
Use the CSS ______ property to configure the cellpadding of a table.
A.) padding
Use the ______ attribute on a td element to associate it with a table heading cell.
A.) th
Use the ________ element to configure a table head row group.
A.) thead
The CSS border-spacing property can be used to configure the horizontal and vertical spacing of table borders.
A.) true
The CSS vertical-align property can be used to configure the vertical alignment of the contents of a table cell.
A.) true
Which of the following CSS3 pseudo-elements will be useful when configuring every other row of a table?
B.) :nth-of-type(n)
Is the following HTML code valid? <table> <tr> <td>cell 1</td> <td>cell 2</tr> </tr> </table>
B.) No, there is a missing closing td tag
What is the recommended use of tables on web pages.
B.) Use tables to organize tabular information
Use the ______ attribute to configure the browser to render default table and table cell borders.
B.) border
Which of the following CSS3 properties position the caption of a table?
B.) caption-side
Use the th element to indicate a table column or row _____.
B.) heading
An HTML table is comprised of ____ and ______.
B.) rows and columns
Use the ______ element to contain a table data cell.
B.) td
Use the headers attribute on the ___ element to correspond to the id attribute on a ___ element.
B.) td, th
Use the ____ element to configure a table heading cell.
B.) th
Use the _____ element to contain a table row.
B.) tr
Use the ______ element to contain an HTML table.
D.) table
Use the ________ element to configure a table footer row group.
D.) tfoot
To eliminate the space between table cells, use the ___________ property.
C.) border-spacing: 0;
Which of the following CSS3 properties configure the alignment of text within a table?
C.) text-align
The purpose of the _______ element is to describe the contents of a table.
B.) caption