I am dealing with a CSS class named "myclass" that requires a z-index of 5 specifically for IE8. I have attempted to achieve this using the following methods:
.myclass{
z-index: 5\9;
}
---> Interestingly, this method applies from IE10 onwards and not just in IE8.
.myclass{
z-index: 5 \0/;
}
----> Although this method also applies from IE10 onwards and creates a syntax error.
Is there a way to achieve this z-index setting only in IE8?