문제

I'm working on a project using Bootstrap 3. I have my main content to the left, and a sidebar containing a menu on the right. When the columns are collapsed (col-md), I need the menu to display above the main content, but can't seem to achieve what I want with the push and pull classes.

My markup is simply:

<main class="col-md-8"></main>
<aside class="col-md-4"></aside>

Any suggestions?

도움이 되었습니까?

해결책

I think you need to do this..

<aside class="col-md-4 col-md-push-8"></aside>
<main class="col-md-8 col-md-pull-4"></main>

Demo: http://www.bootply.com/119451

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top