I want to use landscape printing. In firefox it does always print in potrait? Other browsers use landscape.@media print { @page { size:landscape; margin:0; } }
Asked
Active
Viewed 2,367 times
1 Answers
0
I've seen some fixes floating about the web for this, such as:
<style type="text/css" media="print">
.page
{
-webkit-transform: rotate(-90deg);
-moz-transform:rotate(-90deg);
filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
</style>
but there are some other great examples and a lot of information in this SO question here: Landscape printing from HTML

Community
- 1
- 1

Sonny Prince
- 1,094
- 7
- 15