css print media query prints only first page
Try this: edit: using position absolute. Realized that position:fixed only creates one page since thats how it works (you cannot scroll with position:fixed). Absolute does the same thing but is expandable. @media print { body * { visibility: hidden; } #divname, #divname * { visibility: visible; } #divname { left: 0px; top: 0px; position:absolute; } … Read more