Вы можете использовать class="align-middle"
...
<table class="table table-striped">
<thead>
<tr>
<th scope="col" class="border-top-0">Building</th>
<th scope="col" class="border-top-0">Distance</th>
<th scope="col" class="border-top-0">Monthly Cost</th>
<th scope="col" class="border-top-0"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="align-middle">DF Center</td>
<td class="align-middle">2.2mi</td>
<td class="align-middle">$35</td>
<td class="text-right align-middle">
<button type="button" class="btn btn-secondary btn-lg">Select</button>
</td>
</tr>
</tbody>
</table>
https://www.codeply.com/go/oRuZLixu1L
Для горизонтального центрирования всех клеток головы и тела ..
.table thead th,
.table tbody td {
text-align: center;
}