如果你想將要作為頁腳的元素設定為position:fixed和bottom:0,當頁面列印時,它將在每個列印頁面的底部重複顯示該元素。對於頁首元素,只需將top:0設定即可。
例如:
<div class="divFooter">UNCLASSIFIED</div>
CSS:
@media screen { div.divFooter { display: none; } } @media print { div.divFooter { position: fixed; bottom: 0; } }
如果你想將要作為頁腳的元素設定為position:fixed和bottom:0,當頁面列印時,它將在每個列印頁面的底部重複顯示該元素。對於頁首元素,只需將top:0設定即可。
例如:
CSS: