tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

order-with-column-reverse-ref.html (561B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>CSS Test Reference: flex container layout lowest order with column-reverse direction</title>
      5  <link rel="author" title="tmtysk" href="mailto:tmtysk@gmail.com">
      6  <link rel="reviewer" title="Tab Atkins" href="mailto:jackalmage@gmail.com">
      7  <style>
      8    p {
      9      margin: 0;
     10    }
     11  </style>
     12 </head>
     13 <body>
     14  <p>Test passes if the paragraph below reads 'First,Second,Third' from top.</p>
     15  <div id="test">
     16    <p id="first">First,</p>
     17    <p id="second">Second,</p>
     18    <p id="third">Third</p>
     19  </div>
     20 </body>
     21 </html>