A
A
Aspire892013-11-25 21:03:31
Bootstrap
Aspire89, 2013-11-25 21:03:31

Button group on bootstrap

There is a group of several buttons

<div class="btn-group">
    <button id="v1" type="button" class="btn btn-primary">один</button>
    <button id="v2" type="button" class="btn btn-primary">два</button>
    <button id="v3" type="button" class="btn btn-primary">три</button>
</div>

What does it look like and is it possible to add a click effect on a button even if the cursor is not on the button?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
E
enchikiben, 2013-11-25
@EnChikiben

The .active class

<div class="btn-group">
    <button id="v1" type="button" class="btn btn-primary active">один</button>
    <button id="v2" type="button" class="btn btn-primary">два</button>
    <button id="v3" type="button" class="btn btn-primary">три</button>
</div>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question