Section 1

Preview this deck

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.

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

4 years ago

Date created

Mar 14, 2020

Cards (18)

Section 1

(18 cards)

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.

Front

larger

Back

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

Front

:last-of-type

Back

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

Front

caption

Back

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

Front

<tfoot> .. </tfoot>

Back

Use the _____ attribute to configure the width of a table border

Front

border

Back

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

Front

border-collapse: collapse;

Back

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

Front

cellpadding

Back

Is the following CSS code valid? : table {border:2px #000000 solid; border-collapse: collapse;}

Front

yes

Back

What are the elements used in an HTML table?

Front

th=table header, tr=table row, td=table cell

Back

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

Front

text-align

Back

Is the following HTML code valid? <table width="75%" border="1" cellspacing="5" cellpadding="5">

Front

yes

Back

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

Front

headers

Back

Use the ________ tag pair to configure table headings.

Front

<th></th>

Back

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

Front

:nth-of-type(n)

Back

Use the _______ attribute on a <td> element to associate it with a table heading cell

Front

headers

Back

Use ________ element to indicate column or row headings.

Front

<th>

Back

An HTML table is comprised of _______ and _______

Front

rows and columns

Back

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

Front

cellspacing

Back