When printing (Control + P), and have multiple pages, I am setting a fixed text at the top of each page. However, I need to add margin at the bottom of that text in a way it's not causing issue with the page content.
@media print {
table.tblStandard {
position: fixed;
top: 0;
}
table {
page-break-inside: avoid;
}
}
