Twitter Bootstrap - add top space between rows

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

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

19条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 17:53

    Add to this class in the .css file:

    .row {
        margin-left: -20px;
        *zoom: 1;
        margin-top: 50px;
    }
    

    or make a new class and add it to the element

    .rowSpecificFormName td {
        margin-top: 50px;
    }
    

提交回复
热议问题