joelwenzel
Programmer
- Jun 28, 2002
- 448
I am learning css but I'm having a terrible time learning filters. I have copied code from pages where I can see the filters working but for some reason they don't work for me. The only thing I've gotten to work is the follow code.
this works
<span style="width: 357; Filter: Glow(Color=#00FF00, Strength=20)">Glowing Text</span>
but this doesn't
<STYLE type=text/css>
#banner {
border-top:1 solid silver;
border-bottom:1 solid silver;
letter-spacing: 35pt;
margin: 15px 0px 0% 0px;
color: blue ;
text-indent: 30%;
width: 100%;
Filter: Glow(Color=#00FF00, Strength=20);
font: Bolder 20pt;
padding-bottom: 5px;
}
</style>
<div id=banner>glowing text</div>
Any ideas?
Also, I noticed that for the one that works, if I remove the width: 357;, it stops working. Why?
this works
<span style="width: 357; Filter: Glow(Color=#00FF00, Strength=20)">Glowing Text</span>
but this doesn't
<STYLE type=text/css>
#banner {
border-top:1 solid silver;
border-bottom:1 solid silver;
letter-spacing: 35pt;
margin: 15px 0px 0% 0px;
color: blue ;
text-indent: 30%;
width: 100%;
Filter: Glow(Color=#00FF00, Strength=20);
font: Bolder 20pt;
padding-bottom: 5px;
}
</style>
<div id=banner>glowing text</div>
Any ideas?
Also, I noticed that for the one that works, if I remove the width: 357;, it stops working. Why?