Currently delving into the world of Bootstrap and utilizing jsfiddle.net for some quick testing.
I've hit a roadblock with a simple test. My aim is to showcase the grid system in Bootstrap, so I've replicated their initial example:
<div class="row">
<div class="span4">Span 4</div>
<div class="span8">Span 8</div>
</div>
Unfortunately, it's not functioning as expected -- "Span 4" and "Span 8" are displaying stacked on top of each other instead of in a two-column layout.
Could there be an obvious element that I'm overlooking? You can view the fiddle here: http://jsfiddle.net/8Xf2j/1/
Appreciate any insights!