IE 8 doesn't support nth-child how can I solve this problem ?
#hm-top div:nth-child(1) h3 {
color: #63c2ff;
width: 300px;
padding: 115px 0 0 0;
background: url(images/trade.png) no-repeat center top;
}
IE8 however supports :first-child which is equivalent to :nth-child(1)
:
#hm-top div:first-child h3 {
color: #63c2ff;
width: 300px;
padding: 115px 0 0 0;
background: url(images/trade.png) no-repeat center top;
}
equivalent to li:nth-child(1)
li:first-child { /* change to this */
border-top: 5px solid red;
}
equivalent to li:nth-child(2)
li:first-child + li { /* change to this */
border-top: 5px solid blue;
}
equivalent to li:nth-child(3)
li:first-child + li + li { /* change to this */
border-top: 5px solid green;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With