<blink > tag not afftect on IE all version [duplicate]
Possible Duplicate:
<blink> tag in Internet Explorer
Hai
I have used blink tag to blink a word. It's displays in mozilla. But IE it's not blinking. How I do this? I have used
<blink>* New </blink>
Does any one know this?
<blink>
is non-standard and has never been supported by Microsoft browsers. Blinking is so awful that, while CSS provides a method due to demand for it, it explicitly makes support for the property optional (so a browser can be fully CSS 2.1 compliant without supporting the feature). Internet Explorer does not support this method either.
You might want to try closing the blink tag like this:
</blink>
The blink tag is not a standards-compliant HTML tag. If you absolutely need to blink text, then either use CSS or JS:
.blink {
text-decoration: blink;
}
Here is a jQuery plugin that lets you blink text and should work in IE:
http://plugins.jquery.com/taxonomy/term/2826
精彩评论