Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pages/design-develop/tutorials/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ This changelog lists substantive content edits. It does _not_ list typo fixes an
{% include box.html type="end" %}
{:/}

## April 2026

In [Tables Tutorial](/tutorials/tables/):
* Updated the Complete “Table with headers spanning multiple rows or columns” [Example code](/tutorials/tables/examples/scope-multiple/) to match the code in the [Tables with irregular headers](/tutorials/tables/irregular/#table-with-headers-spanning-multiple-rows-or-columns/) Example #2.

## March 2026

In [Images tutorial](/tutorials/images/):
Expand Down
81 changes: 45 additions & 36 deletions pages/design-develop/tutorials/tables/examples/scope-multiple.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,43 +15,52 @@ github:
<caption>
Poster availability
</caption>
<tr>
<th scope="col">Poster name</th>
<th scope="col">Color</th>
<th colspan="3" scope="colgroup">Sizes available</th>
<col>
<col>
<colgroup span="3"></colgroup>
<thead>
<tr>
<th scope="col">Poster name</th>
<th scope="col">Color</th>
<th colspan="3" scope="colgroup">Sizes available</th>
</tr>
<tr>
<th rowspan="3" scope="rowgroup">Zodiac</th>
<td>Full color</td>
<td>A2</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<td>Black and white</td>
<td>A1</td>
<td>A2</td>
<td>A3</td>
</tr>
<tr>
<td>Sepia</td>
<td>A3</td>
<td>A4</td>
<td>A5</td>
</tr>
<tr>
<th rowspan="2" scope="rowgroup">Angels</th>
<td>Black and white</td>
<td>A1</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<td>Sepia</td>
<td>A2</td>
<td>A3</td>
<td>A5</td>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="3" scope="rowgroup">Zodiac</th>
<th scope="row">Full color</th>
<td>A2</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<th scope="row">Black and white</th>
<td>A1</td>
<td>A2</td>
<td>A3</td>
</tr>
<tr>
<th scope="row">Sepia</th>
<td>A3</td>
<td>A4</td>
<td>A5</td>
</tr>
</tbody>
<tbody>
<tr>
<th rowspan="2" scope="rowgroup">Angels</th>
<th scope="row">Black and white</th>
<td>A1</td>
<td>A3</td>
<td>A4</td>
</tr>
<tr>
<th scope="row">Sepia</th>
<td>A2</td>
<td>A3</td>
<td>A5</td>
</tr>
</tbody>
</table>

~~~