TITLE is cool
In IE, when you mouse over an image with an ALT parameter, you'll see that text pop up after a brief delay.
CSS lets you do something similar with just about anything - a table cell, span tag, link, etc. Here's a simple example:
CSS Code:
<style type="text/css">
.foo {text-decoration: none; cursor: hand}
</style>
HTML Code:
<span class="foo" title="The TITLE parameter is COOL!">
put your mouse cursor on this text
</span>
It's quite handy, so give it a try. The only thing I really dislike is the delay before the TITLE text shows up. I haven't yet figured out if there is a way to remove that delay. If you know, please do tell me!



There are no comments for this entry.
[Add Comment]