I want to move my printing stylesheet into a seperate file to be imported using @media query. I tried the following, but it doesn't seem to work, at least on Chrome:
h1 {
....
}
....
@media screen {
....
}
@media print {
@import "print.css";
}
How can I do it?