medium.com/@Idan_Co/the-ultimate-print-html-template-with-header-footer-568f415f6d2a
<div class="divFooter">UNCLASSIFIED</div>
CSS:
@media screen {
div.divFooter {
display: none;
}
}
@media print {
div.divFooter {
position: fixed;
bottom: 0;
}
}
github.com/rachelandrew/css-for-print www.smashingmagazine.com/2015/01/designing-for-print-with-css/ CSS modules that have been created not for use in web browsers, but to deal with printed and paged media.
No comments:
Post a Comment