I have some problems with the @media. I want a single CSS file controlling the print, screen and aural stylesheets. Here's what I've done:
---------------------
@media screen,tv,projection
body{...}
#left.... (for CSS layouts)
#center ....
#right ....
@media print
body {...}
#left ...
...
-----------------------
However I'm not getting the desired output while using the print preview. I have worked offline so I can't point you to any page at this moment.You'll needmedia screen, tv, projection {
body{...}
#left.... (for CSS layouts)
#center ....
#right ....
}
@media print {
body {...}
#left ...
...
}
---------------------
@media screen,tv,projection
body{...}
#left.... (for CSS layouts)
#center ....
#right ....
@media print
body {...}
#left ...
...
-----------------------
However I'm not getting the desired output while using the print preview. I have worked offline so I can't point you to any page at this moment.You'll needmedia screen, tv, projection {
body{...}
#left.... (for CSS layouts)
#center ....
#right ....
}
@media print {
body {...}
#left ...
...
}