I need to show a div when you house over its parent (default is for the child div to be hidden). Is the only way to do this with javascript? Thanks
@jdln; yes
css:
.outer { background:red; height:100px; } .box1 { background:blue; height:100px; width:80px; display:none; } .outer:hover .box1{ display:block; cursor:pointer; }
check the fiddle: http://jsfiddle.net/sandeep/XLTV3/1/