Looking to implement the designs below using grid layout:
I attempted this approach, but it did not achieve the desired outcome.
http://jsfiddle.net/tomalex0/3fesK/3/
<div>
<div class="col-md-9 col-md-push-3 row-one">1</div>
<div class="col-md-3 col-md-pull-9 row-two">2</div>
<div class="col-md-9 col-md-push-3 row-three">3</div>
</div>
Avoiding the use of absolute positioning, as the footer conflicts with absolute div elements.
Please advise if there is an alternate solution.