+2  A: 

Use a print stylesheet.

Paolo Bergantino
yes now i used it but still seeing margins.
uzay95
Are you sure you did it right? If you have the margins set to 0 in the print stylesheet that's as good as its going to get.
Paolo Bergantino
I ran into an issue while using print stylesheets. If specify a media type on one of your stylesheets, you have to use a media type for all of them in IE. In other words, if you have your default stylesheet, and your print stylesheet, make sure you set your default stylesheet's media to screen and your print stylesheet's media to print.Also, go Noles.
Hooray Im Helping
the style sheets media attribute is "print" :(
uzay95
+2  A: 

The best you can do is set @page margins. Keep in mind, however, that you can and most likely will be overruled if you set margins to 0.

Randolpho
Does that mean you'd simply do something like this?`@page { margin:1in; }`
Matt Huggins