https://i.sstatic.net/swXci.png I'm struggling with formatting a table using Bootstrap. Despite checking the code multiple times, I can't figure out why it's not displaying correctly.
<table class="table table-striped table-bordered">
<thead>
<th>#</th>
<th>Match</th>
<th>League</th>
<th>Odds</th>
<th>Start Date</th>
</thead>
<tbody>
<tr data-toggle="collapse" data-target="#accordion" class="clickable">
<th scope="row"><span class="glyphicon glyphicon-chevron-down" aria-hidden="true"></span></td>
<td>Test</td>
<td>Test</td>
<td>Test</td>
<td>Test</td>
</tr>
<tr>
<td colspan="3" style="padding: 0px;">
<div id="accordion" class="collapse" style="padding: 5px;">Hidden</div>
</td>
</tr>
</tbody>
</table>