yamachi
04-04-2003, 12:23 AM
how would i add a drop shadow to my text using a style sheet? help appreciated ^_^
|
View Full Version : dropshadow... help plz yamachi 04-04-2003, 12:23 AM how would i add a drop shadow to my text using a style sheet? help appreciated ^_^ Alcy 04-04-2003, 05:04 PM You could use something similar to... <style type="text/css"> #text { filter:dropshadow (Color=#00ff00, OffX=2, OffY=2, positive=2); width:200; height:200; } </style> <div id="text"> TEXT TEXT </div> yamachi 04-04-2003, 07:10 PM alright.. i'll try that ^_^ |