Link to home
Start Free TrialLog in
Avatar of cayi
cayi

asked on

onmouseover multiple text effect


I have the following code for an onmouseover text effect that displays a "help" style cursor and a text description, but in addition to that, how can add an underline effect?

----------------------------
In the <head> I have:
----------------------------
<style type="text/css">
span.info {
   cursor: help;
   }
</style


-------------------
in the <body>:
----------------------
<span class="info" title="my text description here">[text]</span>
Avatar of Eternal_Student
Eternal_Student
Flag of United Kingdom of Great Britain and Northern Ireland image

<style type="text/css">
span.info { cursor: help; }
span.info a { text-decoration:none;}
span.info a:hover { text-decoration:underline; cursor: help; }
</style>
ASKER CERTIFIED SOLUTION
Avatar of Eternal_Student
Eternal_Student
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial