tor-browser

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

webkit-box-ordinal-group-2-ref.html (450B)


      1 <!DOCTYPE html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html>
      7 <head>
      8  <title>
      9    CSS Reference
     10  </title>
     11  <style>
     12    .box {
     13      display: flex;
     14      border: 1px solid black;
     15      margin: 5px 20px;
     16    }
     17 
     18    .box > * {
     19      border: 1px dotted purple;
     20    }
     21  </style>
     22 </head>
     23 <body>
     24  <div class="box">
     25    <div>1</div>
     26    <div>0</div>
     27  </div>
     28 </body>
     29 </html>