can a html table have multiple tbody

Solutions on MaxInterview for can a html table have multiple tbody by the best coders in the world

showing results for - "can a html table have multiple tbody"
Micaela
18 Jun 2020
1You can create multiple sections within a table by using multiple <tbody> 
2  elements. Each may potentially have its own header row or rows; however, 
3  there can be only one <thead> per table!
4  
5<table>
6    <thead>
7        <tr><th>Customer</th><th>Order</th><th>Month</th></tr>
8    </thead>
9    <tbody>
10        <tr><td>Customer 1</td><td>#1</td><td>January</td></tr>
11        <tr><td>Customer 1</td><td>#2</td><td>April</td></tr>
12        <tr><td>Customer 1</td><td>#3</td><td>March</td></tr>
13    </tbody>
14    <tbody>
15        <tr><td>Customer 2</td><td>#1</td><td>January</td></tr>
16        <tr><td>Customer 2</td><td>#2</td><td>April</td></tr>
17        <tr><td>Customer 2</td><td>#3</td><td>March</td></tr>
18    </tbody>
19    <tbody>
20        <tr><td>Customer 3</td><td>#1</td><td>January</td></tr>
21        <tr><td>Customer 3</td><td>#2</td><td>April</td></tr>
22        <tr><td>Customer 3</td><td>#3</td><td>March</td></tr>
23    </tbody>
24</table>