You can see the demonstration here , my goal is that the text appears next to the icon and not below.
You can see the demonstration here , my goal is that the text appears next to the icon and not below.
Maybe this is what you are looking for:
<button type="button" (click)="refreshFilter()" class="btn btn-default">
<span class="fa fa-eraser"></span>
<span class="d-none d-md-inline-block d-lg-inline-block d-xl-inline-block"> Limpiar</span>
</button>
Instead of using d-*-block
, use d-*-inline-block
.
Greetings!