On Thursday 05 March 2009 10:25:44 am Bill Stephenson wrote:
> Does anyone know where I can learn how to make smooth page breaks in
> dynamically created HTML documents.
>
> Most of the document is contained in a table and the number of rows is
> a variable as well as the number of lines of text in each row.
>
> I'd like to be able to know when a document has exceeded a single page
> and then direct where the page break will be and format additional
> pages.
>
> Kindest Regards,
>
> --
> Bill Stephenson

you can use CSS  to manage  where you want the  page breaks to go  

something like :

hr.break    {page-break-after: always; width: 0px;}

then call it in your page  with something like :
<hr class="break"></hr><br>


hope this helps 

Greg


-- 
To unsubscribe, e-mail: beginners-cgi-unsubscr...@perl.org
For additional commands, e-mail: beginners-cgi-h...@perl.org
http://learn.perl.org/


Reply via email to