Twitter Bootstrap - add top space between rows

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

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

19条回答
  •  借酒劲吻你
    2020-11-28 17:47

    Bootstrap3

    CSS (gutter only, without margins around):

    .row.row-gutter {
      margin-bottom: -15px;
      overflow: hidden;
    }
    .row.row-gutter > *[class^="col"] {
      margin-bottom: 15px;
    }
    

    CSS (equal margins around, 15px/2):

    .row.row-margins {
      padding-top: 7px; /* or margin-top: 7px; */
      padding-bottom: 7px; /* or margin-bottom: 7px; */
    }
    .row.row-margins > *[class^="col"] {
      margin-top: 8px;
      margin-bottom: 8px;
    }
    

    Usage:

    first
    second
    third

    (with SASS or LESS 15px could be a variable from bootstrap)

提交回复
热议问题