Chapter 5 - HTML Tables

Chapter 5 - HTML Tables

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

With which CSS table property can you specify values of top, bottom and middle?

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

2

All-time users

2

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (33)

Section 1

(33 cards)

With which CSS table property can you specify values of top, bottom and middle?

Front

Vertical-align property

Back

Padding

Front

Property used to create table Determins the amount of space between cell data & cell border Value: Number of pixels

Back

The colspan and rowspan attributes of the <td> and <th> tags specify the number of columns and rows, respectively that a certain element occupies. What is that element?

Front

A table cell

Back

Which of the following CSS table properties determines the amount of space between the borders of adjacent cells?

Front

The border-spacing

Back

By default, content in a table data cell is aligned

Front

Horizontally to the left and vertically to the center of the cell

Back

Consider the following code snippet: <tr> <th rowspan="5"> Site Development Associate </th> </tr> What is result of code?

Front

The row heading is located in a cell that vertically spans five rows of the table

Back

When you specify the height and width of table elements, what occurs when you set multiple values in multiple cells?

Front

The highest value takes precendence

Back

With which CSS table property can you specify values of left, right, center, and justify?

Front

The text-align property

Back

Border-spacing

Front

Property used to create tables Determines the amount of space between the border of adjacent cells Value: Number of pixels

Back

Consider the code: <tr> <th colspan="3"> Site Development Associate </th> </tr> What is the result of the code?

Front

The heading is located in a cell that spans three columns of the table

Back

<td> </td>

Front

table data Required Designates table cell contents. By default, the data is left-justified

Back

Values for the CSS border-spacing and padding properties used for the <table> element can be specified:

Front

in pixels

Back

The CSS padding property of the <table> element determines:

Front

The amount of space between cell data & cell border

Back

<caption> </caption>

Front

Adds caption above table Optional Adds a caption or title which appears above table by default

Back

The CSS vertical-align property used for table elements:

Front

Aligns content vertically in all table elements

Back

Which of the following defines the content of table cells?

Front

<td> tag

Back

Border-collapse

Front

Property used to create tables Collapses the borders of adjacent cells into a single border instead of separating them Value: collapse

Back

vertical-align

Front

Property used to create table Aligns content vertically Values: top bottom middle

Back

By default, content in a table header cell is aligned:

Front

Both horizontally & vertically to the center of the cell

Back

What table element attribute do you need to specify to add a border to a table?

Front

<table border="1">

Back

text-align

Front

Property used to create table Aligns content horizontally Values: left center right justify

Back

Border

Front

Property to create tables Determines the style of the border Values: width (1px) Line style (solid) Color (gray)

Back

<th> </th>

Front

table header Optional Typically designates cells in the top row or left column By default text in header cell is bold and centered

Back

According to HMTL5 standards, which choice correctly describes the relationship between tables and Webpage structure?

Front

Tables should be used where appropriate to format content, but not to structure Webpages

Back

<tr> </tr>

Front

table row Required Contains all data for a table row

Back

Width

Front

Property used to create table Determines how far the table cell will extend horizontally across the page Values: Number of pixels Percentage of browser window

Back

Which CSS table property should you use if you want to combine the borders of adjacent cells into a single border instead of separating them?

Front

The border-collapse property

Back

What is the relationship between tables and borders?

Front

By default, borders do not appear around tables

Back

Which of the following defines a single table row?

Front

<tr>

Back

Background-color

Front

Property used to create table Determines background color for table elements Values: Color name (green) Hexadecimal code (#99FF99)

Back

The CSS text-align property used for table elements

Front

Aligns content horizontally in all table elements

Back

Which table element appears apart from the table itself, by default?

Front

Table caption

Back

Which of the following table element tags are required when you use the <table> tag to create a table?

Front

Table Row <tr> and Table Data <td>

Back