With this HTML I can not position the buttons below the table. I tried several ways, the current one was another attempt.
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<form style="width:400px; margin: 0 auto;">
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Código</th>
<th>Nome</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let operator of dataSource">
<td>{{ operator.operatorId }}</td>
<td>{{ operator.name }}</td>
</tr>
</tbody>
</table>
</form>
</div>
<button type="submit" class="btn btn-primary" >Atualizar</button>
<button type="submit" class="btn btn-primary" >Deletar</button>
</div>
</div>