How to get bootstrap 4 24 grid

2019-01-27 00:52发布

Does anyone know where to download 24 grid version of newest bootstrap 4-0-0 beta? I don't want to use sass, and I cant find customize option in bootstrap website.

1条回答
来,给爷笑一个
2楼-- · 2019-01-27 01:18

You can create 24-columns grid using the auto-layout columns, or by combining the 12-column grid..

https://www.codeply.com/go/nnf7toD1E2

 <div class="row">
        <div class="col">
            1
        </div>
        <div class="col">
            2
        </div>
        <div class="col">
            ..
        </div>
        <div class="col">
            24
        </div>
 </div>

Or, you can generate a custom CSS build by changing the $grid-columns variable to 24.

查看更多
登录 后发表回答