Reputation: 3825
I am using IE 7 and want to know:
Is it possible to create framework in JavaScript so as to implement all the CSS3 styling in browsers such as IE6 or IE 7
I want to deal with this because most of the programming done in my industry should be compatible with IE6 and IE7 and I am fedup of using Images and want to add life to the pages using CSS3. So can anyone suggest me some good way to get along ??
Upvotes: 1
Views: 157
Reputation: 81
Is depending on the browser and its version. Most browsers will create NEWER versions when a new MAJOR version of CSS or HTML is developed (even before [if ever] final).
Most likely it will not be possible since this means you will need to update an older browser to support styles that may not have been available at the time of release.. see comment from naveen
If 2 would be possible I do not see why it shouldn't be doable in a javascript kind of way.... --- Look someone already did it- See comment from naveen
I so not see where "Fedup of using Images" and CSS3 come together, but please feel free to explain further
Upvotes: 0
Reputation: 55200
Try :select[ivizr], for CSS3 selectors in IE 6-8.
As for border-radius
in IE6-8, use this hack
Upvotes: 2