View Full Version : glowing text


Aredhel
12-18-2003, 11:43 PM
how do you add that into CSS (if it is possible)? Instead of typing the whole thing like this:-

<span style="width: 277; height: 1; font-size: 8pt; font-family: arial; color: #6D3268; filter: glow(color=#FFFFFF, strength=5)">

hockyfan641
12-18-2003, 11:46 PM
.classname {
width: 277;
height: 1;
font-size: 8pt;
font-family: arial;
color: #6D3268;
filter: glow(color=#FFFFFF, strength=5);
}

<span class="classname">text</span>

filter is IE only.