user3564005
user3564005

Reputation: 33

how to remove white space at the top when doing a print styles

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

Answers (2)

Henric Åkesson
Henric Åkesson

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

Billy
Billy

Reputation: 2448

Css rules, Try this

@ media print{
body{
margin-top:0px;padding-top:0px;
}
}

Upvotes: 2

Related Questions