Reputation: 109
I have this HTML page and this PDF page generated by a PHP script using DOMPDF.
As you can see the margins and spacings are not the same.
Any suggestion to make a correct page?
Upvotes: 0
Views: 1305
Reputation: 1080
This worked for me:
<style>
@page { margin: 0px 0px; }
</style>
Upvotes: 3