开发者

<blink > tag not afftect on IE all version [duplicate]

This question already has answers here: 开发者_如何转开发 Closed 12 years ago.

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

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜