I want to setting the paper size when click button print.I using ie8 web browsers.Please tell me any solution for this my problem
Asked
Active
Viewed 154 times
1 Answers
0
See CSS3 documentation for following CSS3 solution
Go with CSS3 and change the dimensions of your rendered web page:
/* style sheet for "A4" printing */
@media print and (width: 21cm) and (height: 29.7cm) {
@page {
margin: 3cm;
}
}
/* style sheet for "letter" printing */
@media print and (width: 8.5in) and (height: 11in) {
@page {
margin: 1in;
}
}
/* A4 Landscape*/
@page {
size: A4 landscape;
margin: 10%;
}

Mr_Hmp
- 2,474
- 2
- 35
- 53