Hi, I need to display the following div’s as it is on the screen according to the HTML, but when I print the Claimant Name, Case Info, Contacts, Files should print on 1st page and Claimant Name, Service should print on 2nd page. Can someone please show me a way to solve it using CSS? <body> <div>Claimant Name</div> <div>Case Info</div> <div>Contacts</div> <div>Files</div> <div>Service</div </body> Code (markup): Thanks
you can have style defined for screen and print in 2 css. Usemedia=print or screen while adding the link reference to css on the head. Example: <link rel="stylesheet" type="text/css" media="screen" href="screen.css" /> <link rel="stylesheet" type="text/css" media="print" href="print.css" /> Code (markup):