Background not printed when using CSS media query

SnAkEoNe

New Member
I want to print webpage that support CSS using JavaScript, and here is my simple script:print.css:\[code\]@media print { body { background-color:red;} }\[/code\]webpage.html:\[code\]<HTML><head><link rel="stylesheet" type="text/css" href="http://stackoverflow.com/questions/15584424/print.css" media="print" /></head><BODY> Hello World!</BODY></HTML>\[/code\]Then I try out it, why the result (the background of my webpage) still give me white? I printed it using PDF creator.Can anyone help me?
 
Back
Top