http://twitter.github.com/bootstrap/scaffolding.html
I tried like all combinations:
<div class="row"> <div class="span7 offset5"> box </div> </div>
or
<div class="container"> <div class="row"> <div class="span7 offset5"> box </div> </div> </div>
range and offset number changed ...
But I can not get a simple box, ideally oriented on the page :(
I just want a cell with a width of 6 columns to be centered ...
Editing:
did it with
<div class="container"> <div class="row" id="login-container"> <div class="span8 offset2"> box </div> </div> </div>
But the box is too wide, is there any way to do this with span7?
span7 offset2 gives an extra complement to the left complement span7 offset3 right ...
css twitter-bootstrap twitter-bootstrap-2
Alex Feb 21 '12 at 18:23 2012-02-21 18:23
source share