html - Change column order using bootstrap push and pull -
html - Change column order using bootstrap push and pull -
i have 3 columns in next order:
<div class="container-fluid"> <h1>hello world!</h1> <p>resize browser window see effect.</p> <div class="row"> <div class="col-sm-3">left column</div> <div class="col-sm-6">center column</div> <div class="col-sm-3">right column</div> </div> </div>
and want re-order force , pull. need center column on top, , others column size of 6.
i found great reply may useful column order manipulation using col-lg-push , col-lg-pull in twitter bootstrap 3
bootstrap "mobile first" framework, html should reflect mobile version of site. pushing , pulling done on larger screens.
html css twitter-bootstrap-3 responsive-design
Comments
Post a Comment