How can I reorder my divs using only CSS?

后端 未结 24 1508
傲寒
傲寒 2020-11-22 01:53

Given a template where the HTML cannot be modified because of other requirements, how is it possible to display (rearrange) a div above another div

24条回答
  •  一个人的身影
    2020-11-22 02:17

    With CSS3 flexbox layout module, you can order divs.

    #wrapper {
      display: flex;
      flex-direction: column;
    }
    #firstDiv {
      order: 2;
    }
    
    
    Content1
    Content2

提交回复
热议问题