First of all I should mention that I'm rather new to this.
I'm trying to get my columns to show horizontally, like this:
first column second column
Instead they are showing like this:
first column
second column
Here is my code:
<div class="container">
<div class="row">
<div class="col-md-8">
first column
</div>
<div class="col-md-4">
second column
</div>
</div>
</div>
If I replace the col-md-
with span
so the div classes are span8
and span4
then it works properly. Of course I'm using Bootstrap 3 so I shouldn't be using span but I thought it was interesting to know.