frakorn
frakorn

Reputation: 109

DOMPDF : spacings and margins don't match with HTML page

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

Answers (1)

Talvi Watia
Talvi Watia

Reputation: 1080

This worked for me:

<style>
@page { margin: 0px 0px; }
</style>

Upvotes: 3

Related Questions