Twitter Bootstrap - add top space between rows

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

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

19条回答
  •  南笙
    南笙 (楼主)
    2020-11-28 17:55

    Bootstrap 3

    If you need to separate rows in bootstrap, you can simply use .form-group. This adds 15px margin to the bottom of row.

    In your case, to get margin top, you can add this class to previous .row element

    /* From bootstrap.css */ .form-group { margin-bottom: 15px; }

    Bootstrap 4

    You can use built-in spacing classes

    The "t" in class name makes it apply only to "top" side, there are similar classes for bottom, left, right. The number defines space size.

提交回复
热议问题