FF ---> IE
FF ---> IE
Out of context: Reply #39
- Started
- Last post
- 48 Responses
- spiralstarez0
Jaline - that's not going to work. PNG is the only thing well supported that supports variable transparency.
But I think what you have shown is totally achievable with the PNG. Try the pngfix script I posted, I've used it and it works fine.
Also, if you want to serve things to certain browsers you can do it with CSS
for ie
#divname {
background:gif
}ie can't see this:
html>body #divname {
background:png
}or you can specify two rules to hide things from only IE5
#divname {
background:gif
voice-family: "\"}\"";
voice-family:inherit;
background:png
/*only IE6 and Mozilla see the second one */
}