print_page_size3_ref.html (514B)
1 <!DOCTYPE html> 2 <style> 3 @page { 4 margin: 0; 5 } 6 div { 7 position: absolute; 8 background: blue; 9 width: 1in; 10 height: 1in; 11 } 12 /* These positions assume the test case was placed in the upper left corner of 13 * the page, rather than being centered or scaled. 14 */ 15 .upper { 16 top: 0; 17 } 18 .lower{ 19 top: 2in; 20 } 21 .left{ 22 left: 0; 23 } 24 .right{ 25 left: 2in; 26 } 27 </style> 28 <body> 29 <div class="upper left"></div> 30 <div class="upper right"></div> 31 <div class="lower left"></div> 32 <div class="lower right"></div> 33 </body>