Forum Moderators: not2easy

Message Too Old, No Replies

Printing a page with styles turned off

Printing a page with styles turned off

         

HelenB

3:56 pm on Dec 18, 2006 (gmt 0)

10+ Year Member



Does anyone know what i would need to write in my print css so that the page prints with no styles at all?
Is this possible?
Any info would be great. I can't seem to work out if you can just turn all the styles off.. Thanks! ; )

SuzyUK

6:15 pm on Dec 18, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi HelenB and Welcome to WebmasterWorld!

You wouldn't need a print stylesheet at all, you just apply your main stylesheet to whatever media type [w3.org] you want i.e. screen, projection

something like:
<style type="text/css" media="screen">
@import "your.css";
</style>

Fotiman

6:43 pm on Dec 18, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Or:
<link rel="stylesheet" type="text/css" media="screen" href="yourstylesheet.css">