Quote:
Originally Posted by Toxaris
You should check the HTML and body tags in css. You can also use the @page selector to fix this.
|
Here's what I have for those...
Code:
@page {
margin-top: 5px;
margin-right: 5px;
margin-left: 5px;
}
html>body {
font-family: English, Georgia, 'Times New Roman', Times, serif;
font-weight: normal;
font-size: 100%;
}
body {
font-family: English, Georgia, 'Times New Roman', Times, serif;
font-weight: normal;
font-size: 100%;
line-height: 138%;
margin: 0 0 0 0;
}
Is it, indeed, the @page thing? I put in the 5px (for top, left and right) as per a recommendation here to do that, in order to counter any shadows from the edge of peoples' devices.
If that's what's causing that extra bit of space after a page break, wouldn't it also affect the very first page, too (i.e. the beginning of the HTML file)?