I use AngularJS and Bootstrap and have the following structure:
<parent-div> <flexible-width-component class="pull-left" style="display: inline-block; min-width: 700px;">Data grid with many columns </flexible-width-component> <fixed-width-component class="pull-right" style="width:400px; display: inline-block"> </fixed-width-component> </parent-div>
I want my stretch flexible-width-component automatically fill the gap between itself and fixed-width-component , for any resolution larger than 1200px . Both components should be displayed next to each other.
Any advice is greatly appreciated!
javascript angularjs css
user90766
source share