Clear Rows When Doing Multi-responsive Columns - Bootstrap

后端 未结 10 1143
不知归路
不知归路 2020-12-04 10:32

That title might not be very accurate but here is the situation:

\"The

10条回答
  •  甜味超标
    2020-12-04 10:51

    You can fix this very easily with css if you don't need to support IE8.

    .file-row-contain.col-lg-4:nth-child(3n+1),
    .file-row-contain.col-xs-6:nth-child(2n+1) { 
        clear: left; 
    }
    

    See examples

提交回复
热议问题