I'm doing a CRUD
and I need to align a button to the right completely but I can not do it, usually I always do it with ml-auto
but it does not work for me, here's the code:
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="card">
<div class="card-body">
Lista de Etiquetas
<a href="#" class="btn btn-primary btn-sm ml-auto">Crear</a>
</div>
</div>
</div>
</div>
</div>