I am trying to create an inset box shadow effect to a TR
element inside a table but with no success.
I am using the following CSS:
tr {
-moz-box-shadow: inset 0 0 5px #888;
-webkit-box-shadow: inset 0 0 5px#888;
box-shadow: inner 0 0 5px #888;
}
Live demo: http://jsbin.com/urage5/edit
Is it not possible to create that effect on a tr
element?