Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add space between right align bootstrap button?

I would like to add 3 spaces between two right align button. Is there any bootstrap solution for it without adding custom css?

enter image description here

I do this :

    <div class="text-right">
           <button class="btn-info btn">Log in</button>
<!-- Add 3 spaces between button -->
           <button class="btn-info btn">Log Out </button>
    </div>

Fiddle demo : http://jsfiddle.net/6816gq84/1/

like image 288
LeMoussel Avatar asked Nov 30 '22 23:11

LeMoussel


2 Answers

You can add btn-toolbar class to the container div. Have a look here

like image 150
SASM Avatar answered Dec 04 '22 01:12

SASM


I do this rudimentary solution: How to add space between bootstrap buttons in same div?.

<div class="btn-group pull-right row">
   <div class="col-md-3"><button class="btn btn-default" type="button">Clôturer</button></div>
   <div class="col-md-1"></div>
   <div class="col-md-3"><button class="btn btn-primary" type="button">Soumettre</button></div>
</div>
like image 33
LeMoussel Avatar answered Dec 04 '22 01:12

LeMoussel