I'm working with a Bootstrap table that includes an accordion feature.
My goal is to have the second row hidden by default.
However, when I click to reveal it, the table shifts.
How can I smoothly animate the opening without causing any shifting?
<table class="table table-hover">
<tbody>
<tr data-bs-toggle="collapse" href="#collapse">
<td>Info</td>
<td>Some more Info</td>
<td>And some Info</td>
</tr>
<tr id="collapse" class="collapse">
<td>Hidden by default</td>
<td>Hidden by default</td>
<td>Hidden by default</td>
</tr>
</tbody>