Bootstrap - btn-group-justified

1

I wanted to load the page with one of the "selected" (on) buttons, as if it were a Radion-Button. As if it were a "selected". Does anyone know how to do it?

    
asked by anonymous 11.09.2015 / 22:36

1 answer

1

It was very easy. Abta to put the "active" plugin in front of the "btn-primary" class:

<div class="btn-group btn-group-justified">
  <a class="btn btn-primary active">Todas</a>
  <a class="btn btn-primary">Abertas</a>
  <a class="btn btn-primary">Pendentes</a>
</div>    
    
11.09.2015 / 22:41