Space between buttons with bootstrap class

后端 未结 3 1012
梦毁少年i
梦毁少年i 2020-12-20 03:27

I have a problem with three buttons on my site. I would like to have some space between those buttons. Is it possible to do this, without using inline styling? Perhaps boot

相关标签:
3条回答
  • 2020-12-20 03:49

    Try to put them inside btn-toolbar or some other container.

     <div class="btn-toolbar">
      <button type="button" class="btn btn-primary col-sm-1">1/2</button>
      <button type="button" class="btn btn-primary col-sm-1">1/2</button>
      <button type="button" class="btn btn-primary col-sm-1">1/2</button>
     </div>
    
    0 讨论(0)
  • Yes you have to wrap them

    <div class="btn-group">
    <button type="button" class="btn btn-primary">1/2</button>
    </div>
    <div class="btn-group">
    <button type="button" class="btn btn-primary">1/2</button>
    </div>
    <div class="btn-group">
    <button type="button" class="btn btn-primary">1/2</button>
    </div>
    

    EDITED CODEPEN

    0 讨论(0)
  • 2020-12-20 03:55

    <div class="btn-toolbar">
          <button type="button" class="btn btn-primary col-sm-1">1/2</button>
          <button type="button" class="btn btn-primary col-sm-1">1/2</button>
          <button type="button" class="btn btn-primary col-sm-1">1/2</button>
        </div>

    0 讨论(0)
提交回复
热议问题