I have this table
<div class="container">
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-bordered">
<caption>Lista de Tipo de Campos</caption>
<thead class="thead-dark">
<tr>
<th>Nome</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let typefield of dataSource">
<div *ngIf="typefield.edit!=true">
<td class="col-md-10">{{ typefield.name }}</td>
<td class="col-md-1">
<fa *ngIf="checkEdit()" name="pencil" (click)="initEditTypeField(typefield)"></fa>
</td>
<td class="col-md-1">
<fa *ngIf="checkEdit()" name="times" (click)="onDelete(typefield)"></fa>
</td>
</div>
<form [formGroup]="createForm" *ngIf="typefield.edit === true">
<td class="col-md-6"> {{ typefield.typefieldId}}<input formControlName="id" type="hidden" class="col-md-1"></td>
<td> <input formControlName="name" type="text"></td>
<td class="col-md-1">
<fa name="save" (click)="onUpdate()"></fa>
</td>
<td class="col-md-1">
<fa name="ban" (click)="typefield.edit = null; initDefaultForm();"></fa>
</td>
</form>
</tr>
</tbody>
</table>
<div>
<input type="button" class="btn btn-success pull-right" value="+">
</div>
</div>
</div>
</div>
At the end of it has a value="+" button; How do I make this button aligned to the end of the table on the right.