Click to See Complete Forum and Search --> : text-decoration:blink


angrytuna
04-10-2003, 01:25 PM
Does anyone know if you can make the blinking with style="text-decoration:blink" blink asynchronously?

Jona
04-10-2003, 02:41 PM
Um... Well, I have this really short vocabulary... :( What does that last word mean?

jeffmott
04-10-2003, 03:02 PM
CSS doesn't provide any mechanism for controlling the timing of the blinking. User agents (browsers) are not even required to support this property at all.

If it's that important to you then you'll have to implement a client-side scripting alternative.

Jona
04-10-2003, 03:04 PM
*Looks up the word in dictionary* Oh that's what it means! LOL! Okay, there is a script that makes it work in both IE and Netscape and you can control the speed. It's a Javascript at www.dynamicdrive.com (note: this is not a real CSS property, it is a Javascript that makes a blinking effect on the page, and it works in both IE and Netscape.)

jeffmott
04-10-2003, 03:09 PM
note: this is not a real CSS propertytext-decoration: blink is valid CSS.

Jona
04-10-2003, 03:10 PM
I meant the Javascript's effect isn't a real CSS property.

jeffmott
04-10-2003, 03:10 PM
my bad

angrytuna
04-10-2003, 06:48 PM
Thanks for the help; I'll give your link a try.