Possible Duplicate:
Landscape printing from HTML
How can I print page horizontal in CSS.
size : landscape
or
width: 100%;
height: 100%;
margin: 0% 0% 0% 0%; filter: progid:DXImageTransform.Microsoft.BasicImage(Rotation=1);
code blocks are not working. I try to write these block into body tag class. So, who can help me ?
--------- Edit ---------
Here is the code I use this now :
<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">