tor-browser

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

inline-block-slice-1-ref.html (615B)


      1 <!DOCTYPE html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html class="reftest-paged">
      7 <head>
      8 <style>
      9 @page {
     10  size: 5in 3in;
     11  margin: 0.5in;
     12 }
     13 
     14 html,body {
     15  color:black; background-color:white; font:20px/1 monospace; padding:0; margin:0;
     16 }
     17 
     18 .ib {
     19  display: block;
     20  inline-size: 50vw;
     21  block-size: 150vh;
     22  background-color: grey;
     23  vertical-align: top;
     24 }
     25 
     26 .after {
     27  inline-size: 50vw;
     28  block-size: 10vh;
     29  background-color: black;
     30 }
     31 </style>
     32 </head>
     33 <body>
     34    <div class="ib"></div>
     35    <div class="after"></div>
     36 </body>
     37 </html>