How to remove shadow shadow effect from an element when another element hangs?
Structure:
<div class="box"> <div class="inner_box"> </div> </div>
.inner_box has a shadow shadow effect. When .box is hovering, I want to remove the shadow effect from .inner_box. Besides using jQuery, is there any other way to do this, preferably CSS3?
Please also show me examples of how I can do this in jQuery. Thanks!
+4