Guest_imported
New member
- Jan 1, 1970
- 0
how to make pages break with use control page on report printing
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style type="text/css">
P { page-break-after: always }
</style>
<style type="text/css">
P.pb { page-break-after: always }
</style>
<p>This para won't page break</p>
<p class="pb">This para will page break</p>
-or-
<style type="text/css">
B.pb { page-break-after: always }
</style>
<p>This para will never break until a control is sent.<b class="pb"></b>Like now.</p>