Structure:
 <div class="box">
      <div class="inner_box">
      </div>
 </div>
.inner_box has a box-shadow effect. When .box is hovered I want to remove shadow effect from .inner_box. Besides using JQuery, is there another way I can do this, preferably CSS3?
Please also show me examples of how i can do this in JQuery. Thanks!
Just use this css this will work DEMO HERE
.box:hover .inner_box {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With