Add vertical whitespace using Twitter Bootstrap?

前端 未结 13 1275
挽巷
挽巷 2020-12-12 17:30

What\'s the best way to add vertical whitespace using Twitter\'s Bootstrap?

For example, let\'s say that I am creating a landing page and would like a bit (100px) o

相关标签:
13条回答
  • 2020-12-12 18:13
    <form>
     <fieldset class="form-group"><input type="text" class="form-control" placeholder="Input"/></fieldset>
     <fieldset class="form-group"><button class="btn btn-primary"/>Button</fieldset>
    </form>
    

    http://v4-alpha.getbootstrap.com/components/forms/#form-controls

    0 讨论(0)
  • 2020-12-12 18:14

    I know this is old and there are several good solutions already posted, but a simple solution that worked for me is the following CSS

    <style>
      .divider{
        margin: 0cm 0cm .5cm 0cm;
      }
    </style>
    

    and then create a div in your html

    <div class="divider"></div>
    
    0 讨论(0)
  • 2020-12-12 18:21

    I tried using <div class="control-group"> and it did not change my layout. It did not add vertical space. The solution that worked for me was:

    <ol style="visibility:hidden;"></ol>
    

    If that doesn't give you enough vertical space, you can incrementally get more by adding nested <li>&nbsp;</li> tags.

    0 讨论(0)
  • 2020-12-12 18:23

    Wrapping works but when you just want a space, I like:

    <div class="col-xs-12" style="height:50px;"></div>
    
    0 讨论(0)
  • 2020-12-12 18:24

    There is nothing more DRY than

    .btn {
        margin-bottom:5px;
    }
    
    0 讨论(0)
  • 2020-12-12 18:25

    For version 3 there doesn't appear to be "bootstrap" way to achieve this neatly.

    A panel, a well and a form-group all provide some vertical spacing.

    A more formal specific vertical spacing solution is, apparently, on the roadmap for bootstrap v4

    https://github.com/twbs/bootstrap/issues/4286#issuecomment-36331550 https://github.com/twbs/bootstrap/issues/13532

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