tor-browser

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

inline-block-slice-5.html (727B)


      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 
     22 .ib {
     23  display: inline-block;
     24  inline-size: 50vw;
     25  block-size: 210vh;
     26  vertical-align: top;
     27  border: 5px solid black;
     28 }
     29 
     30 .after {
     31  display: block;
     32  inline-size: 60vw;
     33  block-size: 10vh;
     34  border: 5px dashed grey;
     35  background-color: grey;
     36 }
     37 </style>
     38 </head>
     39 <body>
     40  X<div class="ib"></div>p
     41  <div class="after"></div>
     42 </body>
     43 </html>