There is a white blank space after the footer in print preview, I want to remove that space and fix my footer at the bottom of the page. I tried this code
@page {
size: A4;
margin: 0;
}
@media print {
footer {
position: fixed;
bottom: 0;
width: 100%;
}
This code worked but the text is printed twice and overlap each other
2
Answers
CSS for the footer without position: fixed:
if you get still issue you need to inspect your HTML structure and CSS styles further to identify any potential causes of duplicate content or overlapping text during printing.