tor-browser

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

1221112-1.html (640B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <style>
      5    .flexContainer {
      6      display: flex;
      7 
      8      /* Just for easier visualization: */
      9      width: 600px;
     10      justify-content: space-around;
     11      border: 1px solid black;
     12    }
     13 
     14    .flexContainer:before {
     15      position:absolute;
     16      content:'before';
     17    }
     18    .flexContainer:after {
     19      position:absolute;
     20      content:'after'
     21    }
     22 
     23    .ordered-item {
     24      position:relative;
     25      order:5;
     26    }
     27    </style>
     28  </head>
     29  <body>
     30    <div class="flexContainer">
     31      <div class="ordered-item">ItemWithOrderSet
     32        <!-- It's important that this remain unclosed, for some reason. -->