What are the major differences between IE7 and IE8 that a web tester should know?
views:
1198answers:
4
A:
We have had lots of CSS issues during testing, especially positioning items in an absolute position (eg images).
Russell
2009-08-19 04:39:24
Even the IE 8 (Compatibility mode) did not render the same as true ie7
Russell
2009-08-19 04:39:48
+1
A:
You can take a look at this discussion at SO. It takes a look from the developer's perspective.
Kirtan
2009-08-19 04:40:24
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
2009-08-19 04:46:11