Add vertical whitespace using Twitter Bootstrap?

前端 未结 13 1304
挽巷
挽巷 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:27

    I merely created a div class using various heights i.e.

    The CSS is:

    .divider-10 {
        width:100%; 
        min-height:1px; 
        margin-top:10px; 
        margin-bottom:10px;  
        display:inline-block; 
        position:relative;
    }
    

    Just create a divider class for what ever heights are needed.

提交回复
热议问题