Reputation: 33
How do you remove the white space at the top when you print. I'm doing print styles using print.css files. When i preview the print there is a white space at the top. How do i remove that?
Thanks
Upvotes: 0
Views: 6138
Reputation: 150
How about this?
@media print {
body, html {
margin-top:0px;
padding-top:0px;
}
}
You could write this directly in your default style.css file.
Upvotes: 4
Reputation: 2448
Css rules, Try this
@ media print{
body{
margin-top:0px;padding-top:0px;
}
}
Upvotes: 2