Does Ie8 Support Html5 And Css3?
Solution 1:
- No browser supports all of HTML 5 or CSS 3
- Many browsers (including IE8) support some features added in HTML 5 or CSS 3
- All browsers support some of HTML 5
- All mainstream graphical browsers support some of CSS 3
Worry about what you want to achieve, then look for the optimal way to achieve it. Don't start with the tools available and then try to find a use for them.
Develop for the lowest common denominator and then progressively enhance from there.
Solution 2:
Solution 3:
IE8 supports nothing of HTML5, that wasn't part of HTML4, since it was developed, before HTML5 became even a W3C draft.
CSS3: There is the one or other property, that didn't make it in CSS 2.1, that IE8 actually supports, like text-wrap
. However, it's not worth mentioning it. Especially all the goodies like box shadows and rounded corners don't exist in IE8.
Look at the links in yojimbo87's answer for more details on supported properties.
What is worse, is that even IE9 doesn't support that much of HTML5. They focused on canvas, video and audio and claim it now to be "HTML5 ready". But, for example, all the new form fields are completely missing, not speaking of lots of new JavaScript APIs.
So, to put it in a nutshell, no, IE8 doesn't support HTML5. It can, however, display HTML5 documents, since the specification is written with fallback options for older browsers in mind.
Solution 4:
ie6 & ie7 have almost no support for html5 & css3.
Take a look at Quirksmode's compatibility table at: http://www.quirksmode.org/compatibility.html
If you need to develop in html5 I would recommend taking a look at Modernizr. It is a javascript library that tests the users's browser and modifies the html/css to suit it's capabilities. http://www.modernizr.com/
Solution 5:
The HTML5 specification is still in development phaze. You can try selling a client stuff, that is not yet developed. As with InternetExplorer, then no, it supports just about 5% of HTML5 current specs.
Post a Comment for "Does Ie8 Support Html5 And Css3?"