You are viewing this page out of context. To see it in the context it is intended please click here.
About This Page
Reply posted by Jake Howlett on Tue 11 Sep 2001 in response to Printing with Page Breaks
Good question...
I wasn't aware that Domino used <div> tags when it creates tables.To get more control you can redefine the style to:
[<span class="CSS">]
div.onlyMyDivs{
page-break-after : always;
}
[</span>]
Which tells the browser only to apply this to <div>s with the "onlyMyDivs"
class assigned.
So no you create your divs like this:
[<span class="html">]
<div class="onlyMyDivs">My content<div>
[</span>]
HTH
Jake