how do i resize the page for printing using CSS?
For example i have this page which could not fit into an A4 size paper. how do i use CSS to make it print in such a way that it fit itself on the A4 size paper.
Thank youYou could create a new CSS file, with your edited page for printing:
eg: <link rel="stylesheet" type="text/css" media="print" title="Whatever" href=http://www.webdeveloper.com/forum/archive/index.php/"print-styles.css">
Also, the @page rule allows you to describe the page or paper you may be printing on.
eg:
@page {size: 20cm 40cm }
@page {size: landscape } etc.
For example i have this page which could not fit into an A4 size paper. how do i use CSS to make it print in such a way that it fit itself on the A4 size paper.
Thank youYou could create a new CSS file, with your edited page for printing:
eg: <link rel="stylesheet" type="text/css" media="print" title="Whatever" href=http://www.webdeveloper.com/forum/archive/index.php/"print-styles.css">
Also, the @page rule allows you to describe the page or paper you may be printing on.
eg:
@page {size: 20cm 40cm }
@page {size: landscape } etc.