|
I have two adjacent divs, when the one on left is hovered it causes a ul in the right div to not display. this is the code that works in firefox and opera but not in Chrome or IE7 which both are documented as understanding adjacent selectors.
.leftdiv:hover+.rightdiv ul:first-child{display:none;}
and the div structure
<div class="container">
<div class="leftdiv"></div>
<div class="rightdiv"></div>
</div>
any help would be appreciated
Last edited by briar140; 12-01-2008 at 05:30 PM..
|