tor-browser

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

numbering-5-ref.html (486B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <title>Reference for reordered 'li' flex items</title>
      5  <style>
      6    .container {
      7      display: flex;
      8      flex-direction: column;
      9    }
     10  </style>
     11 </head>
     12 <body>
     13  <ol class="container">
     14    <div>4. List item 4</div>
     15    <div>2. List item 2</div>
     16    <div>3. List item 3</div>
     17    <div>5. List item 5</div>
     18    <div>6. List item 6</div>
     19    <div>8. List item 8</div>
     20    <div>1. List item 1</div>
     21    <div>7. List item 7</div>
     22  </ol>
     23 </body>
     24 </html>