tor-browser

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

inline-block-slice-2.html (699B)


      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: inline-block;
     20  inline-size: 50vw;
     21  block-size: 150vh;
     22  vertical-align: top;
     23  border: 5px solid black;
     24 }
     25 
     26 .after {
     27  inline-size: 60vw;
     28  block-size: 10vh;
     29  position: relative;
     30  inset-block-start: -20vh;
     31  border: 5px solid grey;
     32  background-color: white;
     33 }
     34 </style>
     35 </head>
     36 <body>
     37    <div class="ib"></div>
     38    <div class="after"></div>
     39 </body>
     40 </html>