how to change color on mouseover in css? - CSS Views : 481
Tagged in : CSS
0 1
Send mail
CSS hover effect:

Use CSS hover effect to change the color on mouseover.

.col{
text-decoration: none;
font-weight: bold;
color: #009900;
}
.col:hover{color: #CC0000;}
By Ramya, On - 2010-02-15



    Login to add Comments .