I have a class in name of "myclass". In IE8, i need to apply the z-index as 5 for the "myclass" So i have tried to acheive it by using following methods.
.myclass{
z-index: 5\9
}
---> It applies from IE10 onwards not only in IE8
.myclass{
z-index: 5 \0/
}
----> this also applies from IE10 onwards not only in IE8 and it create syntax error
How to acheive it only in IE8?