Setup Sheet page breaks

Setup Sheet page breaks

bhanleyRM6VF
Enthusiast Enthusiast
379 Views
1 Reply
Message 1 of 2

Setup Sheet page breaks

bhanleyRM6VF
Enthusiast
Enthusiast

Currently have:

<p style="page-break-after: always"></p>
<div class="pagebreak">
</div>
</body>
</html>

 

And it works but it throws an extra blank page at the end. Suggestions?

0 Likes
380 Views
1 Reply
Reply (1)
Message 2 of 2

Jarryd_Barr
Contributor
Contributor

Add this to your css.

.page-break {
    page-break-after: always;
}

.page-break:last-child {
    page-break-after: avoid;
}
0 Likes