I want to change the background for all li that has div that has <a class="wasAdRead".
<li>
    <div class="notification_div" style="padding-top: 6px;">
         <a class="wasAdRead" style="cursor:pointer;">Remind me later</a>
    </div>
</li>
I tried:
#notification-list li[div[.wasAdRead]]:hover
{
    background: white;
}
Any help appreciated!
 
     
     
     
    