Showing posts with label Pdf Generation. Show all posts
Showing posts with label Pdf Generation. Show all posts

Saturday, April 9, 2016

09 Apr

Print css using Window.print() using pdf print

In this below script, Print css using Window.print <style type="text/css" media="print"> @page { size: auto; /* auto is the initial value */ margin: 0; /* this affects the margin in the printer settings */ } </style> @page :left { margin-left: 4cm; margin-right: 3cm; } @page :right { ...