Is there a way to prevent the content from zooming when printing while the browser is zoomed in? The goal is for the printing (using iframe) to remain unchanged even if the browser is zoomed. I attempted:
document.body.style.transformOrigin = 'top left';
document.body.style.transform = 'scale(' + scale + ')';
However, this approach does not work correctly when the page is very long.