I want to print a single HTML page forced to A4 size in landscape orientation.
I tried many things but failed.
my current code is
@media print {
body{
width: 29.7cm;
height: 21cm;
margin: 20mm 20mm 0mm 10mm;
}
}
but i am unable to force the page to landscape orientation.
Please help