You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/css.html
+28-22Lines changed: 28 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -475,12 +475,13 @@ <h2>Live grid example</h2>
475
475
476
476
<h3>Basic grid HTML</h3>
477
477
<p>For a simple two column layout, create a <code>.row</code> and add the appropriate number of <code>.span*</code> columns. As this is a 12-column grid, each <code>.span*</code> spans a number of those 12 columns, and should always add up to 12 for each row (or the number of columns in the parent).</p>
478
-
<preclass="prettyprint linenums">
479
-
<div class="row">
480
-
<div class="span4">...</div>
481
-
<div class="span8">...</div>
482
-
</div>
483
-
</pre>
478
+
{% highlight html linenos %}
479
+
<divclass="row">
480
+
<divclass="span8">8</div>
481
+
<divclass="span4">4</div>
482
+
</div>
483
+
{% endhighlight %}
484
+
484
485
<p>Given this example, we have <code>.span4</code> and <code>.span8</code>, making for 12 total columns and a complete row.</p>
0 commit comments