• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/25

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

25 Cards in this Set

  • Front
  • Back

To define the distance between the edges of each cell in a table use the ________ attribute.

cellspacing

To define the distance between the cell text and the cell border in a table, use the ________ attribute

cellpadding

Use the ________ tag pair to begin and end a table row.

tr /tr

Use the ________ attribute to configure the width of a table border.

border

Use the ________ tag pair to configure table headings.

th /th

A table with a width set to 600 pixels will look ________ on a monitor with resolution set to 640 × 480 than on a monitor with resolution set to 1024 × 768.

larger

The table element's ________ attribute is valid when using HTML5 syntax.

cellspacing

Select the item below that lists elements used in an HTML table:

table, tr, td

Use ________ element to indicate column or row headings.

th

Use the ________ attribute on a element to associate it with a table heading cell.

headers

To configure the table cells to share a common border and eliminate the default space between table cells configure ________.

border-collapse: collapse;

The purpose of the ________ element is to describe the contents of a table.

caption

Use the CSS ________ property to configure the cellpadding of a table.

padding

An HTML table is comprised of ________.

rows and columns

Use the ________ tag pair to configure a table head row group.

thead /thead

Use the ________ tag pair to configure a table footer row group.

tfoot /tfoot

Use the headers attribute on the ________ tag to correspond to the id attribute on a th tag.

td

Is the following code valid in HTML5?


(table border="1" cellspacing="5" cellpadding="5")

No, the cellspacing and cellpadding attributes are obsolete.

Choose the best answer below to the following question: Is the following CSS code valid?




table { border: 2px #000000 solid;


border-collapse: collapse;}

Yes.

Which of the following CSS3 pseudo-elements could be used to apply styles to the last row of a table?

last-of-type

Which of the following CSS3 pseudo-elements will be useful when configuring every other row of a table?

nth-of-type(n)

Which of the following CSS3 properties position the caption of a table?

caption

Which of the following CSS3 properties configure the alignment of text within a table?

text-align

The CSS border-spacing property can be used to configure the horizontal and vertical spacing of table borders.

true

The CSS vertical-align property can be used to configure the vertical alignment of the contents of a table cell.

true