I'm not setting large border (1px or 2px) and i'm not using margins or
padding.

Why not happens with GWT Showcase?

Another intersting thing is, after each refresh, FF renders my
applicatios more massed.



I'm using this DOCTYPE:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://
www.w3.org/TR/html4/loose.dtd">

And my CSS just sets fonts, colors, backgrounds...




On 15 nov, 08:43, gregor <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Are you using any borders/margins/padding with your panels? If you are
> this is might be the cause of your problem
>
> Google "IE broken box model". You will find info about the difference
> between how IE and FF (and other browsers) handle borders etc .
> Basically the issue is this: say you have a panel that is set to 100px
> X 100px, and you add a 5px border to it. IE renders this 100 x 100
> total (so the actual box is now 90 x 90), whereas FF renders it as 110
> x 110 total (so the actual box remains 100 x 100). Another way of
> looking at it is that FF works "from inside out" whereas IE works
> "from outside in". Actually the FF approach follows W3C standards
> whereas IE does not (hence "IE broken box model").
>
> In some situations GWT deals with this automatically for you, in
> others it doesn't. You will find a lot of different approaches to
> dealing with this on the net using javascript/CSS techniques because
> this problem has been around a long time. With GWT there are a range
> of more Java oriented techniques available revolving around how you go
> about nesting and separating primary display containers and their
> contents.
>
> If you create a short EntryPoint test class that demonstrates your
> particular issue and post it here I'm sure you will get a range of
> solution options suggested.
>
> regards
> gregor
>
> On Nov 15, 2:32 am, reechard <[EMAIL PROTECTED]> wrote:
>
> > yes -- I am experiencing this. Wondering if I need to use some kind of
> > browser-specific CSS style to fix it...
>
> > On Nov 14, 5:29 pm, jsantaelena <[EMAIL PROTECTED]> wrote:
>
> > > Hi all,
>
> > > My GWT application render very well in IE, but in FF the panels
> > > (VerticalPanes, HorizontalPanels and FlexTables) overlaps, all of
> > > them.
>
> > > Have somebody expereinced this?
>
> > > Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to