Twitter Bootstrap: how to not scale columns to single row under 767px
as you already know twitter bootstrap scales each span* to 100% width if you are on 767px and below. So, for instance, if we have two columns on 768px and above: <div class="row"> <div class="span6">Column 1</div> <div class="span6">Column 2</div> </div> this is the result: | column 1 | column 2 | <- desktops on 767px and below they will collapse to: | column 1 | <- tablets, mobile | column 2 | and this is what's supposed to be. But… how is you approach if you want this behavior for a row, but not for another? How to left two (or more) columns even under 767px? <div class="row"> <div class=