block-001-wm-vlr-print.html (841B)
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-001-wm-vlr-ref.html"> 5 <meta name="flags" content="paged"> 6 <meta name="fuzzy" content="maxDifference=0-60;totalPixels=0-200"> 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-lr; 21 } 22 html { block-size: 40vw; } 23 24 .b { 25 inline-size: 50vh; 26 block-size: 210vw; 27 box-sizing: border-box; 28 border: 5px solid black; 29 border-block-start-color: blue; 30 border-inline-start-color: lime; 31 margin-inline-start: 20px; 32 margin-block-end: -20px; 33 } 34 </style> 35 <body> 36 <div class="b"></div> 37 </body> 38 </html>