I've created a table using bootstrap, but it's not displaying as intended. I used row-span and col-span to format the table, and while most rows are correct, some are not appearing on the page.
To better illustrate the issue, I have included an image for reference: https://i.sstatic.net/lYFV1.png
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<table class ="table table-bordered" >
<tr>
<th> 8</th>
<th >8 </th>
<th> 8</th>
</tr>
<tr>
<td colspan="2"> 8</td>
<td> 8</td>
<td rowspan="2">8</td>
</tr>
<tr>
<td>8</td>
<td>8</td>
</tr>
</table>