Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I found Custom CHECKBOX and RADIO from the link but could not find this working in IE8.

Is there any way we can use below properties working for IE8?

:after

:before

.big-radio:checked + label:after

Please let me know.

share|improve this question
Try with selectivizr.js or ie7-js. – Vucko Feb 1 at 7:17
Thanks @Vucko but this doesn't work with IE8. I have tried both. – Kushal Jayswal Feb 1 at 7:48
If you want a JS solution (not CSS), use uniformjs. I used it all the time, works on IE8. Includes custom images. – Vucko Feb 1 at 8:03
@Vucko I found this also not working with IE8 in XP. Screenshot: crocko.com/B1637E9942D2486D80CA34F64C7E4A2A/uniform_IE8.png – Kushal Jayswal Feb 1 at 8:41
The link is not working. Are you doing it live or on a localhost ? Can you show me your code ? – Vucko Feb 1 at 8:54
show 1 more commentadd comment (requires an account with 50 reputation)

1 Answer

ie8 doesn't support :checked. You can add class and rewrite rule like this:

.big-radio.checked + label:after

Or try something from this answer http://stackoverflow.com/a/11842991/928516

share|improve this answer
add comment (requires an account with 50 reputation)

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.