Does IE8 have rendering bugs like 6 or 7? - Super User most recent 30 from superuser.com 2010-03-19T16:35:02Z http://superuser.com/feeds/question/67705 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://superuser.com/questions/67705/does-ie8-have-rendering-bugs-like-6-or-7 5 Does IE8 have rendering bugs like 6 or 7? Jitendra vyas http://superuser.com/users/15114 2009-11-08T04:12:21Z 2009-11-08T23:21:10Z <p>Does IE8 have rendering bugs like 6 or 7? If I make my site render correctly in Firefox 3.5, will it look the same in IE8 or will additional changes / hack / etc... be needed?</p> <p>I want to make my site IE8 compatible. Do I need to do something extra for that?</p> http://superuser.com/questions/67705/does-ie8-have-rendering-bugs-like-6-or-7/67706#67706 2 Answer by James Black for Does IE8 have rendering bugs like 6 or 7? James Black http://superuser.com/users/16571 2009-11-08T04:17:32Z 2009-11-08T23:21:10Z <p><strong>Edited</strong> I moved one paragraph and rewrote it based on some feedback.</p> <p>If you explore <a href="http://quirksmode.org" rel="nofollow">http://quirksmode.org</a> you will find compatibility pages that explain the differences between various browsers, including Firefox 3.5 and IE8.</p> <p>Most likely you will be making changes, but that will depend on what you are using, as there are many similarities, that won't require changes.</p> http://superuser.com/questions/67705/does-ie8-have-rendering-bugs-like-6-or-7/67707#67707 11 Answer by Kevin Peno for Does IE8 have rendering bugs like 6 or 7? Kevin Peno http://superuser.com/users/17230 2009-11-08T04:17:38Z 2009-11-08T23:21:10Z <p><strong>All browsers have their various quirks and</strong> no browser is guaranteed to display or act the same as another. While W3C is making great strides to expand the functionality that should be standardized, <strong>many RFCs are not yet to the <a href="http://en.wikipedia.org/wiki/W3C%5Frecommendation" rel="nofollow">Recommendation</a> stage</strong>, which is the stage that means it will no longer change and are more likely to be acceptable standards to develop on. <strong>Because of this, it is imperative that you ensure your site works</strong> in, at minimum, the browsers <strong>within your focus group</strong></p> <p>First, use <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">reset.css</a>. As the page describes, it does a pretty good job of resetting all elements to the standard display format. While not perfect, it gets pretty darn close in all browsers, which is more than you can say without it.</p> <p>Second, check out <a href="http://quirksmode.org/" rel="nofollow">QuirksMode</a> to see the <a href="http://quirksmode.org/compatibility.html" rel="nofollow">various browser compatability</a> with standards (whether those standards are in recommended stage or not). This is where you can decide on the features you will use that match the compatibility with your focus group.</p> <p>Third, assuming you are on windows (or have a VPC image of it), I recommend installing IE8. Also, check out <a href="http://my-debugbar.com/wiki/IETester/HomePage" rel="nofollow">IE Tester</a>, and install the <a href="http://www.debugbar.com/download.php" rel="nofollow">DebugBar</a> for it (but disable it in IE8), to give you the ability to validate and debug your code in IE 5.5 through IE7. Install any other browsers that you consider in your focus group. Doing so will allow you to test, without question, the appearance on the page.</p> <p>Using these tools you should be more than able to develop a design that will look 99.9% the same in any browser that supports the features you implement and validate that it is implemented correctly. While it can be a bit daunting, this will greatly reduce the chance of display/js related bug upon release.</p> http://superuser.com/questions/67705/does-ie8-have-rendering-bugs-like-6-or-7/67708#67708 3 Answer by Guffa for Does IE8 have rendering bugs like 6 or 7? Guffa http://superuser.com/users/2748 2009-11-08T04:19:36Z 2009-11-08T23:21:10Z <p>Yes, IE 8 still has some rendering bugs. Most of them are fixed, but I think that these for example are still there:</p> <ul> <li><p>The text-align attribute is applied to block elements, not just inline elements.</p></li> <li><p>Content of elements is still one character high even if there is no content.</p></li> </ul> <p>Of course it also depends on what doctype you are using. Without a proper doctype the page renders in quirks mode, which pretty much throws the browser back to IE 4.</p> <p>If you are using different style sheets for different browser/version combinations, you will need another one. IE 8 doesn't behave exactly as any other browser or IE version. I always use a single style sheet for all browsers, and I didn't have to make any changes at all to it to make it work for IE 8.</p> http://superuser.com/questions/67705/does-ie8-have-rendering-bugs-like-6-or-7/67709#67709 2 Answer by devstuff for Does IE8 have rendering bugs like 6 or 7? devstuff http://superuser.com/users/4361 2009-11-08T04:50:39Z 2009-11-08T23:21:10Z <p>Expanding on @Kevin's and @James' answers, another good resource is <a href="http://browsershots.org/" rel="nofollow">Browser Shots</a> to get screen captures of your site on different browsers and platforms. Very useful for testing browsers/versions that you don't have access to, especially for tricky CSS layouts.</p> <p>I've used it to view output for Mac and Linux browsers since I work in a Windows-only shop.</p> <p>Note that the URL must be externally accessible; if you're developing on your local box you'll need to poke a hole through your firewall and maybe setup a dynamic DNS name instead of an IP address.</p>