block-002-wm-vrl-print.html (1118B)
1 <!DOCTYPE html> 2 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 3 <link rel="help" href="https://www.w3.org/TR/css-break-3/"> 4 <link rel="match" href="block-002-wm-vrl-ref.html"> 5 <meta name="flags" content="paged"> 6 <meta name="fuzzy" content="maxDifference=0-35;totalPixels=0-220"> 7 <html> 8 <style> 9 @page { 10 size: 5in 3in; 11 margin: 0.5in; 12 } 13 14 :root { 15 print-color-adjust: exact; 16 } 17 18 html,body { 19 color:black; background-color:white; font:20px/1 monospace; padding:0; margin:0; 20 writing-mode: vertical-rl; 21 } 22 html { margin-block-start: 80vw; } 23 * { box-sizing: border-box; } 24 25 .b { 26 inline-size: 50vh; 27 block-size: 130vw; 28 border: 5px solid black; 29 border-block-start-color: blue; 30 border-inline-start-color: lime; 31 margin-inline-start: 20px; 32 } 33 34 .b > div { 35 inline-size: 50vh; 36 block-size: 150vw; 37 border: 5px solid grey; 38 margin-inline-start: 20px; 39 margin-block-start: -5px; 40 } 41 42 .after { 43 inline-size: 60vh; 44 block-size: 30vw; 45 margin-block-start: 5vw; 46 border: 5px solid blue; 47 } 48 </style> 49 <body> 50 <div class="b"> 51 <div></div> 52 </div> 53 <div class="after"></div> 54 </body> 55 </html>