當我使用css打印成PDF格式,例如。我打印的網頁內容比我需要的頁眉,頁腳,比如我的網頁,標籤,日期......等我不想打印的內容?由css打印
下面是一個例子:
<html>
<body>
<img src="Snapshot_20120326.jpg"/>
<h1>Mezoo</h1>
<h2>The big member</h2>
<button onclick="window.print();">print</button>
<style media="print">
h1 ,img {
display: block;
}
h2, button{
display: none;
}
</style>
</body>
</html>
你的例子有點搞砸了,你應該把它修好......但是一開始,把你的樣式表放在'head'而不是'body'中,這不是假定的去體內。 – joshuahealy 2012-03-28 00:10:35
這可能是有幫助的 [http://stackoverflow.com/questions/9423392/print-css-not-working-correctly/9423423#9423423](http://stackoverflow.com/questions/9423392/print-css-不正常工作/ 9423423#9423423) – Dips 2012-03-28 00:11:20
要記住接受正確答案 – 2013-04-19 12:45:51