
|
What is a tooltip?
This is a tooltip
an aiding text that appears just when you roll on with the mouse
, using
pure css popups
a very easy way to get dynamic effects on an html page without using javascript.
Now, let's have a look at the basic css cascade style sheets, the separation from content and presentation code for the tooltip: Code: <style> a.info { a.info:hover { a.info span { display: none } a.info:hover span { /*the span will display just on :hover state*/ </style> <a class=info href="#">This
is a tooltip Code from Eric Meyer |