Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. @page {
  2. size: auto;
  3. margin: 10mm 10mm 10mm 10mm;
  4. }
  5.  
  6. /* A4 210x297 mm */
  7. @media print and (min-height: 266mm) and (max-height: 288mm) and
  8. (min-width: 179mm) and (max-width: 201mm) {
  9. .img_port {
  10. height: 267mm !important;
  11. }
  12. }
  13.  
  14. .img_port {
  15. height: 267mm !important; /* might also try height: 100%; */
  16. page-break-after: always;
  17. page-break-before: always;
  18. page-break-inside: avoid;
  19. }
  20.  
  21. img{
  22. page-break-inside: avoid;
  23. padding:0; margin:0;
  24. top:0; left:0; right:0;bottom:0; border:0;
  25. /*width:2480px; height:3508px!important;*/ /*a4 size */
  26. width:100%; height:100%; max-width:100% important!
  27. }
  28. .page-break { display: block; page-break-before: always; }
  29. @page {
  30. size: landscape;
  31. }
  32. @page :first {
  33. margin-top: 10cm /* Top margin on first page 10cm */
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement