Greetings to all I am adding buttons to my html page with bootstrap 3.7 which looks good:
The problem arises when viewing it in mobile devices, that is, the space that is displayed horizontally is lost in the mobiles:
That way you can see on mobile devices, the code I use is the following:
<div class="row">
<div class="col-md-2">
<a href="javascript:void(0)" class="btn btn-block btn-primary btn-xs" data-toggle="modal" data-target="#modalAgregarCuenta">
<i class="fa fa-plus"> Agregar</i>
</a>
</div>
<div class="col-md-2">
<a href="#" class="btn btn-block btn-success btn-xs"><i class="fa fa-file-excel-o"> Reporte</i></a>
</div>
</div>
Maybe I am using bootstrap badly, I would appreciate your help in advance .. !!