Skip to content

Commit

Permalink
Add <tbody>
Browse files Browse the repository at this point in the history
  • Loading branch information
teoli2003 committed Apr 15, 2024
1 parent f0e1469 commit 73bf583
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions files/en-us/web/css/text-align/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,21 +174,23 @@ This example demonstrates the use of `text-align` on {{htmlelement("table")}} el
<th>Col 2</th>
<th class="right">Col 3</th>
</thead>
<tr class="right">
<td>11</td>
<td class="center">12</td>
<td>13</td>
</tr>
<tr class="center">
<td>21</td>
<td>22</td>
<td>23</td>
</tr>
<tr id="r3">
<td class="right">31</td>
<td>32</td>
<td>33</td>
</tr>
<tbody>
<tr class="right">
<td>11</td>
<td class="center">12</td>
<td>13</td>
</tr>
<tr class="center">
<td>21</td>
<td>22</td>
<td>23</td>
</tr>
<tr id="r3">
<td class="right">31</td>
<td>32</td>
<td>33</td>
</tr>
</tbody>
</table>
```

Expand Down

0 comments on commit 73bf583

Please sign in to comment.