Ceperum
Joined: 13 Jul 2004 Posts: 26 Location: Oregon, USA
|
Posted: Sat Nov 06, 2004 10:52 am Post subject: |
|
|
| ferguweb wrote: | The <blink> tag is not a standard tag but Netscape proprietary code.
If you really want that ugly blink effect, the compliant way to achieve it is through Cascading Style Sheets. See
http://www.w3.org/TR/CSS21/text.html#lining-striking-props
Now, see an example:
| Code: | | <p>Normal text - <span style="text-decoration: blink; color: white; background: blue;">Blinking text</span></p> |
The preceding code works in Mozilla but not in IE. The CSS level 2 spec says:
| Quote: | blink
Text blinks (alternates between visible and invisible). Conforming user agents may simply not blink the text. Note that not blinking the text is one technique to satisfy checkpoint 3.3 of WAI-UAAG. |
|
Ugh....when are people going to learn that you cannot do 'blink' in IE. CSS blink doesnt work with this, or the html version. the only successful way I have found to work is by using Javascript. _________________ As Darkness falls, the shadows rise. |
|