Currently, I am working with code that utilizes Bootstrap 2.
<div class="row-fluid">
<div class="span4">Some text 1</div>
<div class="span4">Some text 2</div>
<div class="span4">Some text 3</div>
</div>
<div class="row-fluid">
<div class="span4">Some text 4</div>
<div class="span4">Some text 5</div>
<div class="span4">Some text 6</div>
</div>
Is it possible to achieve 3 rows with 2 columns each without altering the existing code?
I want to display 3 columns and 2 rows on desktop, while needing 2 columns and 3 rows on mobile devices.
I have discovered a solution at http://jsfiddle.net/gkZKq/