CSS box shadow works on mozilla but not on Chrome. If I use the class on div (i.e. div with id mydiv) it works! Why am I not allowed to use box shadow on tr tag??

<!DOCTYPE html>                                                    
<html lang="en">                                                   
    <head>                                                         
    <style>
        .item_row:hover {
        box-shadow: 0px 0px 8px 2px #CCCCCC inset;                 
        -moz-box-shadow: 0px 0px 8px 2px #CCCCCC inset;            
        -webkit-box-shadow: 0px 0px 8px 2px #CCCCCC inset;         
        }                                                          
    </style>
    </head>
    <body>
        <div id='mydiv'>
            <table>
                <tr class='item_row'>                              
                <td>test</td>
                </tr>                                              
            </table>                                               
        </div>
    </body>
</html>
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Yes, just tested in Chrome. Instead of applying your css to the tr, instead apply to the child td:

.item_row:hover td {
  box-shadow: 0px 0px 8px 2px #CCCCCC inset;                 
  -moz-box-shadow: 0px 0px 8px 2px #CCCCCC inset;            
  -webkit-box-shadow: 0px 0px 8px 2px #CCCCCC inset;         
}                                                          
link|improve this answer
Yes. It works on td. Sometimes css doesn't work on logic. Why is it so? Is it because of "less knowledge about css" or "its the way it works and we need to use trial and error". – nizam.sp Jan 6 at 10:50
feedback

maybe it's a chrome/webkit bug: try instead to generate the shadow into td cells, smthg like

 .item_row:hover td { ... }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.