H
Helpful person
I have a CSS for displaying to the monitor which is linked into my page
as follows:
<link rel="stylesheet" type="text/css" href="screen.css"
media="screen">
I have a CSS for displaying to the printer which is linked to my page
as follows:
<link rel="stylesheet" type="text/css" href="print.css" media="print">
In my print.css I have the line:
div .test {display: none}
On my page I have a layer named test
I am expecting the layer named test to show on the screen but not on
the printed page. However, it shows on both. What am I doing wrong?
as follows:
<link rel="stylesheet" type="text/css" href="screen.css"
media="screen">
I have a CSS for displaying to the printer which is linked to my page
as follows:
<link rel="stylesheet" type="text/css" href="print.css" media="print">
In my print.css I have the line:
div .test {display: none}
On my page I have a layer named test
I am expecting the layer named test to show on the screen but not on
the printed page. However, it shows on both. What am I doing wrong?