HTML CSS examples for CSS Widget:Hover
make more divs appear when hovering over one div
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .box {<!-- w w w .j a va 2 s. c o m--> border:0 solid Chartreuse; border-left-width:100px; height:100px; width:100px; } .box:hover { border-color:yellow; background:red; height:100px; width:100px; } </style> </head> <body> <div class="box"></div> </body> </html>