blink css property in IE

IE doesn’t support blinking property :

text-decoration: blink;

You can achieve this effect with (compatible FX and IE) :

.blinking_zone
{
visibility: expression((Math.floor(new Date().getTime()/500)%2)?”visible”:”hidden”);
text-decoration: blink;
}

Leave a Reply

Your email address will not be published. Required fields are marked *