Twitter Bootstrap - add top space between rows

前端 未结 19 2358
孤独总比滥情好
孤独总比滥情好 2020-11-28 17:17

How to add margin top to class=\"row\" elements using twitter bootstrap framework?

19条回答
  •  自闭症患者
    2020-11-28 17:53

    I'm using these classes to alter top margin:

    .margin-top-05 { margin-top: 0.5em; }
    .margin-top-10 { margin-top: 1.0em; }
    .margin-top-15 { margin-top: 1.5em; }
    .margin-top-20 { margin-top: 2.0em; }
    .margin-top-25 { margin-top: 2.5em; }
    .margin-top-30 { margin-top: 3.0em; }
    

    When I need an element to have 2em spacing from the element above I use it like this:

    Something here

    If you prefere pixels so change the em to px to have it your way.

提交回复
热议问题