2015-01-13 102 views
-2

我想在所有打印頁面上顯示頁腳,但僅在最後一頁顯示,沒有任何東西適用於我。如果任何人有想法。在每個html打印頁面上顯示頁腳

我已經搜索了很多css的建議,但沒有爲我工作。我的技術只在最後一頁顯示頁腳。但我需要在所有可打印的頁面上顯示。

<style type="text/css"> 
html, body { 
    height: 98.5%; 
    width: 98%; 
} 
.wrapper { 
    min-height: 98.5%; 
    width: 98%; 
    height: auto !important; 
    height: 98.5%; 
    margin: 0.3in 0.5in -0.1in 0.5in; 
} 
.footer, .push { 
    margin-bottom: 0px; 
    height: 10px; 
    text-align: center; 
} 
.attachment-watermark-print { 
    font-size: 20px; 
    font-weight: bold; 
    opacity: .5; 
} 
</style> 

<div class="wrapper"> 
    <div id="content"></div> 
    <div class="push" style="clear: both;"></div> 
</div> 
<div class="footer"> 
<span id="spnWaterMark" class="attachment-watermark-print"> 
Printed from My System 
</span> 
</div> 

回答

0

使用這個在你的CSS,

.attachment-watermark-print { 
position:absolute; 
bottom:0; 
font-size: 20px; 
font-weight: bold; 
opacity: .5; 
} 

.footer類添加這些附加屬性,

.footer { 
    position:relative; 
} 
+0

感謝,但這種方法仍然不工作對我來說,它只顯示水只在打印模式下在最後一頁標記。 – Tariq

+0

上面的CSS不是我在谷歌瀏覽器的問題...是否有任何解決方案鉻請please..securedeveloper – Tariq

相關問題