I took the template from w3-schools , did some research and tried this by looking at this question :
@page {
size: 7in 9.25in;
margin: 27mm 16mm 27mm 16mm;
}
I inserted this print code
<script>
$(document).ready(function()
{
window.print();
});
</script>
And got this result:

But that I do not want. I do not want extra spaces around divs. It should be printed as page A4, for example:

What should I do to achieve this?
PS: Before unleashing the frustration, I am a pure backend developer. My partner, who is a third-party developer, has been sick for several days. Sorry and thanks :)
source
share