user244333
user244333

Reputation:

How to change to color of a link with mouse over effect?

I have a link in blue color.

I want to it to be in black color. Then when a person rolls his mouse over it, it should change to black link with the underline.

Upvotes: 0

Views: 2533

Answers (1)

Justin Skiles
Justin Skiles

Reputation: 9503

Are you familiar with CSS? You can define effects on anchors like:

a:link  { color: #000000; }
a:hover { text-decoration: underline;  }

Upvotes: 12

Related Questions