views:

1198

answers:

4

What are the major differences between IE7 and IE8 that a web tester should know?

A: 

We have had lots of CSS issues during testing, especially positioning items in an absolute position (eg images).

Russell
Even the IE 8 (Compatibility mode) did not render the same as true ie7
Russell
+1  A: 

You can take a look at this discussion at SO. It takes a look from the developer's perspective.

Kirtan
A: 

one major change is that IE8 doesn't center block level items with text-align: center the way that IE7 would. Now you must use display: block; margin: 0 auto;

Jason