Twitter Bootstrap - add top space between rows

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

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

19条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 17:45

    Editing or overriding the row in Twitter bootstrap is a bad idea, because this is a core part of the page scaffolding and you will need rows without a top margin.

    To solve this, instead create a new class "top-buffer" that adds the standard margin that you need.

    .top-buffer { margin-top:20px; }
    

    And then use it on the row divs where you need a top margin.

    ...

提交回复
热议问题