Yury Stolpov

Results 4 comments of Yury Stolpov

I'm not sure if this is the right solution, but I got it like this: ```js function html2pdfRemoveOverflow(element, options = {},copy = true){ let cp_elem; if (copy){ cp_elem = element.cloneNode(true);...

> > ```js > > child.style.maxHeight='auto'; > > ``` > > Thanks for the hint. The only thing I would change is to set `max-height` to `unset`, as `auto` is...

I also faced this problem in my project. Having experimented a little with the input data, it turned out that overriding the width parameter for html2canvas also breaks page breaks....

I found the following solution, which allows you to consistently convert regardless of the content of the page. It consists of simply adding spacers to create breaks on the page...