0

I made a page contains specific control, and i used CSS and it works okay and applied on the page, but when i print the control which contains my data , no effect to the CSS on the paper . what is the problem ? the control exists in div.

Daniel Kutik
  • 6,997
  • 2
  • 27
  • 34
Anyname Donotcare
  • 11,113
  • 66
  • 219
  • 392

3 Answers3

2

have you used @media inside the css source or the media-attribute eg media="screen"inside the html source code? that might be the reason.

Daniel Kutik
  • 6,997
  • 2
  • 27
  • 34
2

Background colors and images won't be printed by default by most browsers.

IE reference: http://support.microsoft.com/kb/296326

Firefox reference: How do I Make Firefox Print a Background-Color Style?

Easy enough to find for any other browser if you want.

Community
  • 1
  • 1
Shadow The GPT Wizard
  • 66,030
  • 26
  • 140
  • 208
1

Check this interesting read at A List Apart: http://www.alistapart.com/articles/goingtoprint/

It is a comprehensive guide at using print style sheets.

Sander
  • 1,244
  • 1
  • 12
  • 24