Is there a way to incorporate Bootstrap Nav Pills into a table, with the "tab buttons" located in the last row of the table? I've attempted it but it doesn't seem to be functioning correctly.
Check out this link for reference
<table class="table">
<caption>List of users</caption>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td> <a data-toggle="tab" href="#home">BUTTON HERE</a> </td>
<td> <a data-toggle="tab" href="#profile">BUTTON HERE</a> </td>
<td> <a data-toggle="tab" href="#contact">BUTTON HERE</a> </td>
</tr>
</tbody>
</table>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel">...home..</div>
<div class="tab-pane fade" id="profile" role="tabpanel">...profile...</div>
<div class="tab-pane fade" id="contact" role="tabpanel">...contact...</div>
</div>