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>