tor-browser

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

inline-block-slice-7-ref.html (1066B)


      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 @font-face {
     14  font-family: Ahem;
     15  src: url(../fonts/Ahem.ttf);
     16 }
     17 
     18 html,body {
     19  color:black; background-color:white; font:20px/1 Ahem; padding:0; margin:0;
     20 }
     21 html { block-size: 1in; }
     22 
     23 .ib {
     24  display: block;
     25  inline-size: 2.5in;
     26  block-size: 3in;
     27  border: 5px solid black;
     28  margin-left: 20px;
     29  margin-top: -20px;
     30 }
     31 .ib > div {
     32  block-size: 3.25in; /* creates a bit of scrollable overflow on .ib */
     33 }
     34 
     35 .after {
     36  margin-block-start: calc(0.25in - 5px); /* scrollable overflow 0.25in minus border-block-end-width 5px */
     37  display: block;
     38  inline-size: 2.5in;
     39  block-size: 0.25in;
     40  border: 5px dashed grey;
     41  background-color: grey;
     42 }
     43 </style>
     44 </head>
     45 <body>
     46  X<span style="display:inline-block; inline-size:2.5in; border:5px solid transparent"></span>p
     47  <div class="ib"><div></div></div>
     48  <div class="after"></div>
     49 </body>
     50 </html>