html - How to center my divs with bootstrap -
html - How to center my divs with bootstrap -
i trying center divs bootstrap
html
<div id="wrapper" class="container-fluid row"> <div id="left" class="col-lg-4 col-md-4 col-sm-4 col-xs-4"> //stuff </div> <div id="right" class="col-lg-8 col-md-8 col-sm-8 col-xs-8"> //stuff </div> </div> it shows
---------------------------- | | ||left | | right | || | | | || | | | | | i want have
---------------------------- | | |left| | right | | | | | | | | with left , right divs centered within wrapper time.
what best way bootstrap class only?
like using offset
<div class="container-fluid"> <div class="row"> <div class="col-md-offset-4 col-md-4">this div</div> <div class="col-md-3">the other div</div> </div> </div> http://www.bootply.com/m4mreventv#
html css twitter-bootstrap twitter-bootstrap-3
Comments
Post a Comment