4 columns to 2 columns with Twitter Bootstrap

前端 未结 4 1262
长情又很酷
长情又很酷 2021-02-08 06:22

I have a 4 columns fluid-layout:

A
4条回答
  •  梦谈多话
    2021-02-08 06:54

    Adding to Emilie's answer you also need to reset the widths of the columns,

    @media (min-width: 768px) and (max-width: 979px) {
        .row-fluid > [class*=span]:nth-child(2n+1) {
            clear: both;
            margin-left: 0;
        }
    
        .row-fluid .span3 {
            width: 48.61878453038674%;
        }
    }
    

提交回复
热议问题