Having trouble aligning spans in a Bootstrap 3 form to degrade into a stack on mobile:
From [station1] to [station2] at [time]
From
[station1]
to
[station2]
at
[time]
While this code works to an extent:
<div class="row">
<div class="col-md-1">From</div>
<div class="col-md-3"><select>...</select></div>
<div class="col-md-1">To</div>
<div class="col-md-3"><select>...</select></div>
...
</div>
It doesn't look great on wide screens:
From [station1] to [station2] at [time]
Spans without col-X-Y classes don't work well with Bootstrap, and mixing grid and non-grid elements leads to ordering issues. Here's a JSFiddle link illustrating the problem: here. Any suggestions?