[REBOL] Re: page-breaks in html or pdf?
From: tserpa:earthlink at: 5-Dec-2003 9:15
Petr Krenzelok wrote:
>I found the difference - IE, when using borders, still keeps the size
> of the rectangle intact and margins of the area are substracted from the
> inner area space, otoh Mozilla keeps internal box area intact and border
> is drawn outside such box.
That is a well-known CSS parsing bug in IE5.x/Windows. For a description of
the problem (you actually pretty much described it) and a solution for
overcoming it go here - http://tantek.com/CSS/Examples/boxmodelhack.html
I also noticed that you are using points as your units of measure. As you
probably know, points are great for printed media but not so good for the
screen. You should probably use two style sheets, one for printing and one
for screen display using pixels and percentages.
Ted