box-shadow
doesn't seem to be functioning properly in Chrome for me.
In my table layout, I need to use the display
property set as table-row-group
.
I've been attempting to apply a box-shadow
to the tbody element but it's not producing the desired effect.
You can view the issue here - JSFiddle.
Interestingly, it works perfectly in Firefox but not in Chrome. After researching other suggestions and questions, it appears that using display: block
property may resolve this.
Is there any workaround for using display: table-row-group
while still achieving the desired result?