Tribe,
This works in NS 7.0 beta:
<style>
P, H1, H2, H3, H4, H5, H6, UL, OL, DIR, MENU, PRE, DL, DIV, CENTER,
NOSCRIPT, NOFRAMES, BLOCKQUOTE, FORM, ISINDEX, HR, TABLE, FIELDSET,
ADDRESS
{
-moz-box-sizing: border-box;
}
</style>
This forces Moz to implement IE's broken box model
- now called the CSS3 border-box model
- as opposed to the content-box.
Dave Cline
Boris Zbarsky <[EMAIL PROTECTED]> wrote in message
news:<akf824$[EMAIL PROTECTED]>...
> Dave Cline wrote:
> > <div style="position:absolute;background-color:red;border:10px solid
> > blue;width:100;height:30;top:100;left:100;margin:0;padding:0;overflow:auto"></div>
> >
> > IE 5+
> > xxxxxxxxxx
> > x x
> > xxxxxxxxxx
> >
> > NS 6.2
> > xxxxxxxxxxxx
> > x x
> > x x
> > x x
> > xxxxxxxxxxxx
>
> http://www.tantek.com/CSS/Examples/boxmodelhack.html is a page by the
> technical lead of the MacIE team that explains the exact fashion in
> which IE5 is buggy and how it may be circumvented.