is it possible to use this command in a Stylesheet for IE5.5 I tried it
many times but it doesn't work. I'd like to create a Print-Dokument in
IE 5.5 , but is it possible to make this with css2? If not, which scrip
I've to use?????
Thank's a lot
chris
@page is not implemented in IE5.5. To create print style rules, you
have to add the attribute
media="print"
to the stylesheet or use the @media rule *within* the current stylesheet.
IE4 and newer will accept a print stylesheet but the only print-specific
rule that is implemented is the forced page break, as in:
H2 {page-break-before: always}
Brett