page-orientation-portrait-ref.html (411B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <link rel="author" title="Jonathan Watt" href="mailto:jwatt@jwatt.org"> 5 <style> 6 7 @page { 8 size: portrait; 9 } 10 div { 11 box-sizing: border-box; 12 width: 2in; 13 height: 4in; 14 border-top: none; 15 border-right: 15px solid orange; 16 border-bottom: none; 17 border-left: 15px solid blue; 18 } 19 body { 20 margin: 0; 21 } 22 23 </style> 24 <body> 25 <div></div> 26 </body> 27 </html>