|
|
how to change color on mouseover in css? - CSS
|
Views : 481
|
|
Tagged in : CSS
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|