hey!
i have used rgba() function for my web site header to give it a transparent effect.
But the function is not supported for IE older versions.
can any one tell me/provide me links how to override the function for IE ???
| SitePoint Sponsor |
hey!
i have used rgba() function for my web site header to give it a transparent effect.
But the function is not supported for IE older versions.
can any one tell me/provide me links how to override the function for IE ???
Does not work?Code:color: #xxx; color: rgba();
logic_earth: actually i want the code to work like this:
if the rgba() function is not supported then it should display a bland color in place of the transparent effect...
by the way, i tried the code u said, it doesn't work out..
thanks for your reply..
Actual code i am using is:
background-color: rgba(34, 33, 29, 0.9);
background-color: rgb(34, 33, 29);
Doesn't that look a little bit backwards from what logic_earth said?


IE needs you to say background and not background-color. More info here.
www.pmob.co.uk CSS FAQ 3 col demo Read My CSS Articles
Ultimate CSS Reference
Check out SitePoint's latest JavaScript challenge
Thanks every one for your replies!!
Bookmarks