Well, your first issue is IE6.  It has TERRIBLE box model support.  If
you don't already know about it, shed a few tears now for all the
hours you and every web developer has and will spend on it.


a,div,img {
        border: 0px none;
        min-width: 0;
}

Using css, you can fix some of the box model hacks, OR you can include
http://code.google.com/p/ie7-js/ for IE to make it act like everyone
else {NOT tested!  I used to use ie-7.js back when I coded JS by hand,
and it worked marvels}.

My guess is that you're applying your own styles to the labels / text
areas, and those style rules are different for each browser.  Do you
have some test code to post?  Many fonts are OS-specific, you can
google "browser safe fonts" for a list and examples.

Font-size can have small snags, are you declaring your sizes in px or
em?  Do you still use the holly-hack {line-height:100%;}?

Note that IE doesn't listen to width:100% or height:100% unless it's
inside a relative / absolute container with defined width:789px or
height:123px.

Fixed doesn't work on ie6.

Ie8-as-ie7 doesn't actually render like ie7.



QUIRKSMODE.ORG

You'll find lots of amazing facts about the loveliness of IE insanity
there...
--~--~---------~--~----~------------~-------~--~----~
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