Hi,
the below will work to print in landscape
html>
<head>
<title>Landscape Printing</title>
<style type="text/css" media="print">
<!--
div.page {
writing-mode: tb-rl;
height: 80%;
margin: 10% 0%;
}
-->
</style>
</head>
<body>
<div class="page">
This is a test<br>
This is a test
</div>
</body>
</html>
good luck
anil
|