Fluid Container in Bootstrap 3

前端 未结 5 1169
我寻月下人不归
我寻月下人不归 2020-12-12 21:03

How to make fluid container in bootstrap 3?

In bootstrap 2.3.2 .container-fluid class is there. But now in bootstrap 3 it is missing and there is only <

5条回答
  •  鱼传尺愫
    2020-12-12 21:31

    I simply setup the following CSS rule where any row that is a child of container-fluid will no longer have a negative margin that offsets the grid system.

    .container-fluid > .row {
        margin-left: 0;
    }
    

    I will test further to see if this creates any issues with other fixed width grid layouts.

提交回复
热议问题