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.
source
share