如何在CSS中打印水平页面

时间:2012-10-12 14:03:18

标签: css printing landscape

  

可能重复:
  Landscape printing from HTML

如何在CSS中水平打印页面。

size : landscape 

width: 100%; 
height: 100%; 
margin: 0% 0% 0% 0%; filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1);

代码块不起作用。我尝试将这些块写入body标签类。那么,谁可以帮助我?

---------编辑---------

以下是我现在使用的代码:

<style type="text/css" media="print">
    .land {
        -webkit-transform: rotate(-90deg); 
        -moz-transform: rotate(-90deg);
        filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }
</style>
<body class="land">

0 个答案:

没有答案