modernizr.js won't do any magic, it just tells you that what features are supported by which browser. Ultimately you've to fill the gap of unsupported features in different browsers using modernizr, if you want to have same UI experience across all browser.
Please check below link to know what I mean to say :
As far as I know, those are client side technologies and entirely depends on the browser. If the browser does not support it, no matter how hard we try, we cannot make them to run on that browser. So you may have to rewrite those again using altternative
methods for each.
res.web
Member
546 Points
138 Posts
HTML5/CSS3
May 03, 2012 06:43 AM|LINK
Does IE6/IE7/IE8/IE9 supports HTML5/CSS3, if not how to modify pages (created in HTML5/CSS3) so that it can work on all vesion of IE and Firefox
roopeshreddy
All-Star
20143 Points
3327 Posts
Re: HTML5/CSS3
May 03, 2012 07:44 AM|LINK
Hi,
HTML5 & CSS3 is supported from IE9 and above! Mozilla Firefox 4+ supports HTML5 and CSS3!
You can check the following links!
http://css3pie.com/
You can also consider using Modernizer, which has fallback methods for non HTML5 support browsers!
http://modernizr.com/
Hope it helps u...
Roopesh Reddy C
Roopesh's Space
mishra.bhupe...
Participant
1598 Points
378 Posts
Re: HTML5/CSS3
May 03, 2012 07:45 AM|LINK
upto IE7 doesnot support HTML5/CSS3. But we can overcome this problem by using modernizr.js javascript in our project. It's free download from:
http://modernizr.com/
enjoy.
mtayyab
Member
53 Points
37 Posts
Re: HTML5/CSS3
May 03, 2012 08:53 AM|LINK
IE9 supports HTML5
nilsan
All-Star
16900 Points
3711 Posts
Re: HTML5/CSS3
May 03, 2012 08:59 AM|LINK
I would suggest you to check http://caniuse.com
It lets you know what HTML5 and CSS3 properties are supported by which browser and what version.
For fallback method as Roopesh suggested modernizr.
Blog | Get your forum question answered | Microsoft Community Contributor 2011
res.web
Member
546 Points
138 Posts
Re: HTML5/CSS3
May 03, 2012 10:29 AM|LINK
Even after using modernizr.js, and going through the url http://caniuse.com many features are not supported on lower version of ie and firefox,
so any other solutions so that i can use html5/css3 independent of browser
nilsan
All-Star
16900 Points
3711 Posts
Re: HTML5/CSS3
May 04, 2012 05:13 AM|LINK
modernizr.js won't do any magic, it just tells you that what features are supported by which browser. Ultimately you've to fill the gap of unsupported features in different browsers using modernizr, if you want to have same UI experience across all browser.
Please check below link to know what I mean to say :
http://msdn.microsoft.com/en-us/magazine/hh394148.aspx
Blog | Get your forum question answered | Microsoft Community Contributor 2011
Ruchira
All-Star
42943 Points
7024 Posts
MVP
Re: HTML5/CSS3
May 05, 2012 12:45 PM|LINK
Hello res.web,
As far as I know, those are client side technologies and entirely depends on the browser. If the browser does not support it, no matter how hard we try, we cannot make them to run on that browser. So you may have to rewrite those again using altternative methods for each.
My Tech blog | My YouTube ChannelPlease 'Mark as Answer' if this post helps you.