kempsteven / vue-html2pdf

vue-html2pdf converts any vue component or element into PDF, vue-html2pdf is basically a vue wrapper only and uses html2pdf.js behind the scenes.
https://www.npmjs.com/package/vue-html2pdf
MIT License
432 stars 75 forks source link

why i have padding on my left side of my pdf? #94

Open akbarism opened 3 years ago

akbarism commented 3 years ago

Describe the bug everytime i generate pdf i always have padding on my left side of my pdf

To Reproduce Steps to reproduce the behavior:

Screenshots image Package Version 1.8.0

Additional context here is my code : ` <vue-html2pdf :show-layout="false" :float-layout="true" :enable-download="true" :preview-modal="true" :paginate-elements-by-height="1400" filename="hee hee" :pdf-quality="2" :manual-pagination="false" pdf-format="a4" pdf-orientation="landscape" pdf-content-width="800px" @hasStartedGeneration="hasStartedGeneration()" @hasGenerated="hasGenerated($event)" ref="html2Pdf"

and in css :

  • { padding: 0; margin: 0; } .square { width: 300px; height: 300px; background: salmon; } `