Bootstrap right Column on top on mobile view

前端 未结 11 2143
逝去的感伤
逝去的感伤 2020-11-28 17:51

I have a Bootstrap Page like this:

A
11条回答
  •  清酒与你
    2020-11-28 18:34

    Use Column ordering to accomplish this.

    col-md-push-6 will "push" the column to the right 6 and col-md-pull-6 will "pull" the column to the left on "md" or greater view-ports. On any smaller view-ports the columns will be in normal order again.

    I think what throws people off, is that you have to put B above A in your HTML. There may be a different way to do this where A can go above B in the HTML, but I'm not sure how to do it...

    DEMO

    B
    A

    view-port >= md

    |A|B|
    

    view-port < md

    |B|
    |A|
    

提交回复
热议问题