PDA

View Full Version : possible to have multiple filters?


Tails
02-10-2003, 10:32 PM
Can I have multiple filters? For example, opacity and glow? Separating them by commas fail. And applying 2 filter things in the style attribute makes one work and not the other.

meow
02-11-2003, 08:54 AM
Separate with semi colon, ";". Filters are MS mumbo jumbo CSS. :p

ronaldb66
02-11-2003, 10:39 AM
If i recall correctly, MSIE doesn't handle multiple style properties correctly, it only uses the last one. Also, i thought the separation character was space, but don't shoot me on that one.

meow
02-11-2003, 11:19 AM
:thumbsup: You are correct. Filters seem to want space as separator.

This works:

p { font: bold 5em Arial, sans-serif; color: lime; width: 5em; filter: alpha(opacity=40) glow(color=red, strength=25 }


<p>
Hello!</p>

I get it now. It's a list. No need to repeat "filter". :p

Tails
02-11-2003, 08:24 PM
Thanks. That looks really disorganized on Microsoft's part, but I'll try it.