We all know that IE 6 and 7 do not support the newly added css3 attribute, or even the CSS 3 is not fully prepared with IE8.Do you know that today I will share with you a script tool that can help you enable CSS 3 to support Internet Explorer (IE6) and new css3 attributes, including border-RADIUS attributes, box-shadow (Shadow ),Text-shadow(Shadow text ).
The usage is simple:
Behavior: URL (ie-css3.htc );
Code
1 . Box { 2 -Moz-border-radius: 15px;/* Firefox */ 3 -WebKit-border-radius: 15px;/* safari and chrome */ 4 Border-radius: 15px;/* opera 10.5 +, future browsers, and now also Internet Explorer 6 + using IE-CSS3 */ 5 6 -Moz-box-Shadow: 10px 10px 20px #000;/* Firefox */ 7 -WebKit-box-Shadow: 10px 10px 20px #000;/* safari and chrome */ 8 Box-Shadow: 10px 10px 20px #000;/* opera 10.5 +, future browsers and IE6 + using IE-CSS3 */ 9 10 Behavior: URL (ie-css3.htc);/* This lets ie know to call the script on all elements which get the 'box' class */ 11 }
Although there are also some problems with the Z-index and box-shadow colors (#000 colors), it is really helpful for script hacker attacks.You should give it a try!
HereDownload script.
ThanksFetchak.comProvide this script!