CSS
Blinking Text with CSS
Netscape Navigator fans will love this CSS tip. Netscape is able to render the CSS blink tag while Miscrosoft Internet Explorer cannot.
Add the following code to your "external" style sheet.
.blink { text-decoration: blink; }
Assign the custom class to a span of text in your web page or one of your head tags, ie. h1, h2, h3, etc.
Examples of use:
1) <span>Your text in this area.</span>
2) <h1 class="blink">Your Text Here</a>
Upload the page to your server and surf to it using Netscape. There you go! A cool text effect, but MIE ignores the CSS blink property. :(
If you are viewing this page with MIE, switch over to Netscape and see the difference.
|