Dynamic Bootstrap Separator for Columns (Angular Preferred)

Say I have a typical bootstrap layout with rowandcol-lg-x

<div class="content container">
    <div class="row">
        <div class="col-lg-5">

        </div>
        <div class="col-lg-7">

        </div>
    </div> 
</div>

Are there any plugins (maybe angular, but others too) to make the draggable delimiter between the two columns so the user can adjust the width?

As in this example (Tab # 2), except that it should β€œbind” to loading possible col-lg-xx combinations, such as col-6 / col-6, col-5 / col-7, col- 4 / col-8.

+4
source share
2 answers
+1

Source: https://habr.com/ru/post/1530706/


All Articles