Difference between revisions of "Scafolding"

(Created page with "{{alert|<center>'''Do not go crazy with scafolding. keep it as simple as possible'''</center>|alert-danger}} ==Basic HTML Grid== <pre> <div class="row-fluid"> <div class="s...")
 
(No difference)

Latest revision as of 02:56, 1 August 2014

Do not go crazy with scafolding. keep it as simple as possible

Basic HTML Grid

<div class="row-fluid">
  <div class="span4">

  </div>
  <div class="span8">

  </div>
</div>
This is "span4"
This is "span8"

Offseting

<div class="row-fluid">
  <div class="span4">...</div>
  <div class="span3 offset2">...</div>
</div>
This is "span4"
This is "span3" with "offset5"