I\'m trying to make a div\'s background color change on mouse over.
the div {background:white;} the div a:hover{background:grey
html code:
this is your web page
css code:
.nicecolor { color:red; width:200px; height:200px; } .nicecolor:hover { color:blue; }
and thats how youll change your div from red to blue by hovering over it.