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

Is it possible to change the background color of an input radio in Firefox/Chrome like in IE? (Without using images)

Run this in both IE(<9) and Firefox/Chrome

http://jsfiddle.net/pAf3U/

Thanks

share|improve this question

2 Answers

Alternatively it is possible to change the border using CSS.

This is the input radio:

<input name="myinput" id="myinput" type="radio" value="1" class="highlighted" />

And this is the CSS:

.highlighted {
    outline:1px solid #F00; /* Firefox, Opera, Chrome, IE8+ */
    *filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=-1, OffY=0,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=1, OffY=0,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=-1,color=#FF0000) progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1,color=#FF0000); /* IE6, IE7 */
}
share|improve this answer

input radio is just a circle, so you can change the style of the < a > or < div > tag like this:

Here

share|improve this answer
Thanks for the reply! But I just want to change the background of the radio button – vpascoal Jul 12 '11 at 10:48
radio button is just a circle, there is no text, so we can't change the background of it. – Maidot Jul 12 '11 at 10:54

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.