Skip to content

Commit ee677b2

Browse files
Correct scope for "Dwarf planets" table header (#42340)
Also makes a few grammatical fixes. Fixes #42331.
1 parent 19c36d7 commit ee677b2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • files/en-us/learn_web_development/core/structuring_content/planet_data_table

files/en-us/learn_web_development/core/structuring_content/planet_data_table/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar: learnsidebar
88

99
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Table_accessibility", "Learn_web_development/Core/Structuring_content/HTML_forms", "Learn_web_development/Core/Structuring_content")}}
1010

11-
In this challenge, we provide you with some data on the planets in our solar system. Your job is to structure it into an accessible HTML table.
11+
In this challenge, we provide data on the planets in our solar system. Your job is to structure it into an accessible HTML table.
1212

1313
## Starting point
1414

@@ -123,9 +123,9 @@ In this challenge, we provide you with some data on the planets in our solar sys
123123

124124
## Project brief
125125

126-
You are working at a school; currently your students are studying the planets of our solar system, and you want to provide them with an easy-to-follow set of data to look up facts and figures about the planets. An HTML data table would be ideal — you need to take the raw data you have available and turn it into a table, following the steps below.
126+
You are working at a school; currently, your students are studying the planets of our solar system, and you want to provide them with an easy-to-follow set of data to look up facts and figures about the planets. An HTML data table would be ideal — you need to take the raw data you have available and turn it into a table, following the steps below.
127127

128-
All the data you need is contained in the data listing provided above. If you have trouble visualizing the data, look at the live example below, or try drawing a diagram.
128+
All the data you need is contained in the data listing provided above. If you have trouble visualizing the data, take a look at the live example below, or try drawing a diagram.
129129

130130
1. Start the table off by giving it an outer container, a table header, and a table body. You don't need a table footer for this example.
131131
2. Add the provided caption to your table.
@@ -143,7 +143,7 @@ All the data you need is contained in the data listing provided above. If you ha
143143

144144
## Example
145145

146-
The table should look like the following after being marked up correctly. If you are getting stuck on how to achieve some of this, see the solution below the live example.
146+
The table should look like the following after being marked up correctly. If you get stuck, check out the solution below the live example.
147147

148148
{{embedlivesample("planet-data-table", "100%", 650)}}
149149

@@ -284,7 +284,7 @@ Your finished HTML should look like this:
284284
<td></td>
285285
</tr>
286286
<tr>
287-
<th colspan="2" scope="row">Dwarf planets</th>
287+
<th colspan="2" scope="rowgroup">Dwarf planets</th>
288288
<th scope="row">Pluto</th>
289289
<td>0.0146</td>
290290
<td>2,370</td>

0 commit comments

Comments
 (0)