Can I use CSS to reverse the display order of two elements?

后端 未结 4 698
花落未央
花落未央 2021-01-15 08:41

This sounds crazy, but bear with me. I\'m writing a page that basically consists of the following:

4条回答
  •  再見小時候
    2021-01-15 09:14

    You can make it this way:

    Content 1
    Content 2
    Content 1

    Css for Display:

    #child3 {display: none}
    

    Css for Print:

    #child1 {display: none}
    

提交回复
热议问题