css - Method to use horizontal columns for a TV Guide? -


i making epg (electronic programme guide) , have basic container set insert columns show channels. have read online methods use i'm not sure. 1 of ones thinking using bootstrap framework.

i trying make this. big container horizontal rows in! advice appreciated thank you! enter image description here

you might want use grid if you're using bootstrap. following.

<div class="container"> <div class="row"> <div class="col-sm-1></div> <div class="col-sm-3> <div>some content</div> <div>  <div class="col-sm-4> <div>some content</div> </div>  <div class="col-sm-2> <div>some content</div> </div> </div> 

though way of formatting layout of page. given guide image dynamic isn't ideal.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -