Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Change the Color of Link when a Mouse Hovers
To change the color of a link when we bring a mouse pointer over that link, use the: hover property.
Example
You can try to run the following code to change the link color:
<html>
<head>
<style>
a:hover {
color: #FFCC00
}
</style>
</head>
<body>
<a href = "">My Link</a>
</body>
</html> Advertisements
