I have a table that uses box-shadow when hovering on rows to display some styling. This was working fine until I discovered that in IE11 it not working.
The problem seems to be that using a z-index: -1 to avoid the td being above tr is not working as expected in IE11.
table td {
position:relative;
background-color: #EFEFEF;
z-index: -1;
}
I have created a fiddle that works in chrome but not in IE11: https://jsfiddle.net/pjz43a52/8/
So my questions are:
- Is there any known issue with IE11 and z-index: -1? I found things related to z-index but not to this case specifically.
- How can I solve this? I tried different things but none of them working without breaking the current behavior which is to have the box-shadow on top of the td.
Any ideas?
<table>
is cancer...Although I don't know WHY exactly such behaviors happen... But yeah - that's compatibility issues and we've to hack around it, so if we re-use the same code you wrote before, but instead of using a
<table>
we will use only<div>
, the result will be the same, but it will work on IE11 - I tested it for you!