This code is functioning in IE9:
body.country-XYZ .abc:nth-child(3) {
display:none;
}
As :nth-child()
is effective in IE9 and newer versions, what can be done to ensure it also functions on IE8? Can you suggest an alternative method for achieving the same result as nth-child(2n+1) that works in IE8?