html - Reduce window width and keep current columns size -
using bootstrap want able leave column on right side of page so:
<div class="row"><div class="col-md-push-1 col-md-10"> content goes here </div></div>
the problem though had left 1 col available shrinks content in center anyways reduce size of window. want able keep content centralize , not shrink until window width small enough. best solution this?
<div class="row"> <div class="col-1-md hidden-sm"></div> <div class="col-md-10"> content goes here </div> </div>
the class hidden-*
hides content @ specific bootstrap width
Comments
Post a Comment