What is the best way to give support `nth-child` in one shot to all IE version?
- by metal-gear-solid
What is the best way to give support nth-child in one shot to all IE version?
I want to give style like this. for some particular pages.
#products tr:nth-child(even) {
background-color: red;
}
#products tr:nth-child(odd) {
background-color: white;
}