Could you assist me in adjusting the alignment of my inputs? I am looking to position them above the last two columns ("Primary price" and "Secondary price"). To provide clarity, I have included a wireframe.
https://i.sstatic.net/Zq983.jpg
I attempted to add Bootstrap columns within table cells, but it ended up breaking the entire table. Here is a simplified example:
https://jsfiddle.net/ma7pv408/
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="50323f3f24232422312010657e607e62">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<div class="row">
<table class="table">
<thead class="thead-dark">
<tr>
<th class="col-1" scope="col">#</th>
<th class="col-3" scope="col">Name</th>
<th class="col-4" scope="col">Primary price</th>
<th class="col-4" scope="col">Secondary price</th>
</tr>
</thead>
<tbody>
<tr>
<th class="col-1" scope="row">1</th>
<td class="col-3">Mark</td>
<td class="col-4">9€</td>
<td class="col-4">100€</td>
</tr>
<tr>
<th class="col-1" scope="row">2</th>
<td class="col-3">Jacob</td>
<td class="col-4">23€</td>
<td class="col-4">208€</td>
</tr>
<tr>
<th class="col-1" scope="row">3</th>
<td class="col-3">Larry</td>
<td class="col-4">21€</td>
<td class="col-4">90€</td>
</tr>
</tbody>
</table>
</div>