tor-browser

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

box-properties-4-ref.html (604B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4  <meta charset="UTF-8">
      5  <title>Bug 1055667 - Box properties on ruby boxes</title>
      6  <link rel="stylesheet" href="common.css">
      7  <style>
      8    .inside {
      9      display: inline-block;
     10      width: 50px; height: 10px;
     11      background: black;
     12    }
     13  </style>
     14 </head>
     15 <body>
     16  <div style="width: 80px">
     17    <span style="background: silver; padding: 0 20px; border: 10px solid gray; border-width: 0 10px;"
     18      ><div class="inside"></div
     19      ><div class="inside" style="padding: 0 15px;"></div
     20      ><div class="inside"></div
     21    ></span>
     22  </div>
     23 </body>
     24 </html>