Trying to align my divs using bootstrap
HTML code:
<div id="wrapper" class="container-fluid row">
<div id="left" class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
//content
</div>
<div id="right" class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
//content
</div>
</div>
Current display:
----------------------------
| |
||left | | right |
|| | | |
|| | | |
|
|
Desired alignment:
----------------------------
|
| |left| | right |
| | | | |
|
|
Looking to always center the Left
and Right
divs within the wrapper
. How can this be achieved using only bootstrap classes?