HTML CSS examples for CSS Widget:Div
Hover to change background color of Div with style
<html> <head> <style type="text/css"> .mydiv<!--from w w w . ja va 2 s .c o m--> { width:100px; height:100px; background-color:Chartreuse; } .mydiv:hover { background-color:yellow; } </style> </head> <body> <div class="mydiv"> </div> </body> </html>