Box Shadow on table row not appearing on certain browsers

后端 未结 9 1792
夕颜
夕颜 2020-11-27 18:44

CSS box-shadow on table rows - tr - doesn\'t seem to be working consistently across browsers. On some browsers the shadow is displayed; on others, there is no s

9条回答
  •  误落风尘
    2020-11-27 19:02

    Use transform scale(1,1) property with box-shadow it will solve the problem.

    tr:hover {
      transform: scale(1);
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
      -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
      -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
    }
    

    Fiddle: https://jsfiddle.net/ampicx/5p91xr48/

    Thanks!!

提交回复
热议问题