What are the major differences between IE7 and IE8 that a web tester should know?
closed as not constructive by CharlesB, FelipeAls, Oleg V. Volkov, Monolo, rene Sep 7 '12 at 10:07
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
We have had lots of CSS issues during testing, especially positioning items in an absolute position (eg images). |
|||||
|
|
You can take a look at this discussion at SO. It takes a look from the developer's perspective. |
|||
|
|
|
one major change is that IE8 doesn't center block level items with |
|||
|
|
|
IE7 generates new stacking context, even if z-index:auto, for positioned boxes, doesn't support position:inherit, position:absolute = hasLayout in IE7/IE6, position:fixed does in IE7. are you separating ie styles? if you are, and using conditionals, just check syntax, and exclude IE8 for starters, so - prolly will resolve itself. |
|||
|
|