Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. /* style sheet for "A4" printing */
  2. @media print and (width: 21cm) and (height: 29.7cm) {
  3. @page {
  4. margin: 2cm;
  5. }
  6. }
  7. /* style sheet for "letter" printing */
  8. @media print and (width: 8.5in) and (height: 11in) {
  9. @page {
  10. margin: 1in;
  11. }
  12. }
  13.  
  14. /* A4 Landscape*/
  15. @page {
  16. size: A4 landscape;
  17. margin: 10%;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement