my html is the following:
<body>
<div id="pageHeader" style="padding: 0; margin: 0; background-color: yellow;">ABC</div>
<div style="background-color: red;">123</div>
</body>
I get pdf with big space between ABC and 123, 5-6 times higher than text.
how to suppress it?
I have completely removing whitespaces using
const pdfOptions = {
format: 'A4',
border: '0',
header: {
height: '0mm',
},
footer: {
height: '0mm',
},
};
Most helpful comment
I have completely removing whitespaces using