Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hover black

Status
Not open for further replies.

nphani

Technical User
Feb 10, 2002
104
US
Hi Friends,
I have a style as:
.leftpane { color: #009999; text-decoration:none; font-size: 9px; font-family: Verdana; }
and i use it as:
<a href=# class=&quot;leftpane&quot;>Text Here</a>

What i also want is that the hyperlink, when hovered should change its color to black. I am able to achieve this by using:
a:hover {color: #000000;}
But this is making all the hyperlinks in my page change their color on hover. I want this feature only to those of class &quot;leftpane&quot;. So how do i merge this hover black style into leftpane? Or any idea to implement the same?

Thanx in advance,
Phani
 
Hey guys,
I think i got it.
A.leftpane { color: #009999; text-decoration:none; font-size: 9px; font-family: Verdana; }
A.leftpane:HOVER { color: #000000;}
thought would like to share with you all
(correct me if i am wrong :) )
Phani
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top