3

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; } }

daniel
  • 34,281
  • 39
  • 104
  • 158

1 Answers1

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