print landscape

liunx

Guest
I should preface by stating that CSS is new to me.

Here's my code:

<style type="text/css" media="print">
@page sideways {
size: landscape;
}

<BODY id="sideways" bgcolor="#FFFFFF" leftmargin="0"topmargin="0" marginwidth="0" marginheight="0">


Is my syntax correct for assigning the body id. If so why won't this print in landscape for me? Does IE not support this particular snippet of CSS?@page sideways {size: landscape;}
body {page:sideways;}

without the need for id, but as far as I can tell there is no support (<!-- m --><a class="postlink" href="http://www.westciv.com/style_master/academy/browser_support/printing.html">http://www.westciv.com/style_master/aca ... nting.html</a><!-- m -->) for it yet.

In IE you can do this:
body {writing-mode: tb-rl;}
 
Back
Top