私のコードのhtmlのこのような(HMTLのCSS):PDFでページ番号= 1を表示させないにはどうしたらいいですか?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Print PDF</title>
<style type="text/css">
.footer { position: fixed; left: 0px; right: 0px; height: 50px;text-align: center; }
.footer .pagenum:before { content: counter(page); }
</style>
</head>
<body>
<h1>This is test</h1>
<table class="tg">
<tr>
<th class="tg-3wr7">kolom 1</th>
<th class="tg-3wr7">kolom 2</th>
<th class="tg-3wr7">kolom 3</th>
<th class="tg-3wr7">kolom 4</th>
<th class="tg-3wr7">kolom 5</th>
</tr>
@php ($row = 22)
@for($i=0;$i<$row;$i++)
<tr>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
<td class="tg-rv4w">test 1</td>
</tr>
@endfor
</table>
<div class="footer">
<span class="pagenum"></span>
</div>
</body>
</html>
は$行= 22は、それはこのように1つだけのページが表示されます:
場合は$行= 202、それこのように7ページが表示されます。
以上の1ページがある場合は、最初のページは、ページ番号を表示しません。
しかし、唯一の1ページがあり、最初のページが表示されたページ番号
私が欲しいのです:
私はどのようにすることができますのみ1ページ
がある場合にページ番号を消えたいですそれ? DOMPDFのバージョンと
私たちにあなたのcodを教えてくださいpdfにエクスポートするためのe –