page-orientation-on-portrait-002-notref.html (566B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Not-reference Case</title> 4 <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 5 <link rel="help" href="https://drafts.csswg.org/css-page/#page-orientation-prop"> 6 <style> 7 @page { 8 margin: 0; 9 size: 200px 300px; 10 } 11 @page rotated { 12 page-orientation: rotate-left; 13 } 14 body { 15 margin: 0; 16 } 17 .filler { 18 box-sizing: border-box; 19 width: 200px; 20 height: 300px; 21 border: 10px solid black; 22 } 23 </style> 24 <div class="filler">Page 1</div> 25 <div class="filler" style="page: rotated">Page 2</div>