Tables Flashcards

1
Q

What element is used to create a table that will contain data?

A

The <table> element will contain all of the tabular data we plan on displaying.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the first step in entering data into a table?

A

The first step in entering data into the table is to add rows using the table row element: <tr> </tr>.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

If rows aren’t sufficient enough to add data to a table what is used to add data?

A

Rows aren’t sufficient to add data to a table. Each cell element must also be defined. In HTML, you can add data using the table data element: <td>.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you add titles to rows and columns?

A

To add titles to rows and columns, you can use the table heading element: <th>.
Just like table data, a table heading must be placed within a table row.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the use of the scope attribute?

hint <th scope="row">Temperature</th>

A

The use of the scope attribute, which can take one of two values:
row - this value makes it clear that the heading is for a row.
col - this value makes it clear that the heading is for a column.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What if the table contains data that spans multiple columns?

A

Data can span columns using the colspan attribute. The attribute accepts an integer (greater than or equal to 1) to denote the number of columns it spans across.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What if the table contains data that spans multiple rows?

A

Data can also span multiple rows using the rowspan attribute.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Over time, a table can grow to contain a lot of data and become very long. When this happens, the table can be sectioned off so that it is easier to manage.

A

Long tables can be sectioned off using the table body element: <tbody>.
The <tbody> element should contain all of the table’s data, excluding the table headings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

<thead> </thead>

A

When a table’s body is sectioned off, however, it also makes sense to section off the table’s column headings using the <thead> element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

<tfoot> </tfoot>

A

The bottom part of a long table can also be sectioned off using the <tfoot> element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly