html5 - Efficient code for grid design -
recently have been introduced bootstrap , rwd. have understood whole idea cannot seem master grid system. created div container make fixed design. want use grids have lots of spaces in webpage. meaning this:
header
about 10 lines of free space
content / content / content
about 5 lines of free space
content
how design webpage using grids? guess asking not how, efficient way it. not want code messy. thanks.
<div class='container'> <div class='row'> <div class='span12'>header</div> </div> <div class='row'> <div class='span4'>content</div> <div class='span4'>content</div> <div class='span4'>content</div> </div> <div class='row'> <div class='span12'>content</div> </div> </div>
as lines of free space, add margins needed
Comments
Post a Comment