Search code examples
htmlcssstylesheet

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


Solution

  • How about this?

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

    You could write this directly in your default style.css file.