Bootstrap grid layout when div is removed

前端 未结 1 695
别那么骄傲
别那么骄傲 2021-01-21 08:35

So I am working with a dashboard look that has the possibility of having four \'squares\' that can be switched on and role dependant on a users role.

The top row usuall

相关标签:
1条回答
  • 2021-01-21 08:38

    You can use the auto-layout col columns which will fill the width...

    <div class="row">
        <div class="col">
            ...
        </div>
        <div class="col">
            ...
        </div>
    </div>
    

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

    0 讨论(0)
提交回复
热议问题