ShivamTaneja
ShivamTaneja
You can try setting the margin-top property of the html element to 0. ``` html { margin-top: 0; } ```
You can try setting the **marginLeft** and **marginTop** options in the **jsPDF** object to 0: ``` const opt = { margin: 0, filename: 'test.pdf', pagebreak: { mode: 'legacy' }, image:...
The pagebreak option `pagebreak: { mode: 'legacy' }` sets the mode to legacy, which disables the default page break behavior of the library. Instead of this use: `pagebreak: { mode:...
I'm glad to hear that everything is working well now! Regarding the issue with top indents, you can try adding the following CSS: ``` .break-point{ margin: 0; padding: 0; }...
Hey is anyone working on this?