any updates on this? would be great if we can add to the header and footer some too to include logos, alignmenets etc

something like this would be great to have:

@media print { 
@page::before {
    font-family: 'Roboto Mono';
    /* change to a font on your system - not necessarily monospace*/
    font-size: 10px;
    color: darkgrey;
    display: block;
    text-align: right;
    content: 'This is the header text';
    }
@page::after {
    font-family: 'Roboto Mono';
    /* change to a font on your system - not necessarily monospace*/
    font-size: 10px;
    color: darkgrey;
    display: block;
    text-align: right;
    border-top: 1px solid darkgrey;
    content: '<HTML GOES HERE>'
    }
}