Highlighting a radio button with CSS
Posted
by dsoftware
on Stack Overflow
See other posts from Stack Overflow
or by dsoftware
Published on 2010-05-10T15:24:37Z
Indexed on
2010/05/10
15:44 UTC
Read the original article
Hit count: 190
I have been trying to highlight a radio button with CSS but have been unsuccessful to get styling to work in FireFox. I see some methods of using images to render highlighting. Is there a preferred way to handle radio button highlighting across multiple browsers?
Example
<input type="text" style="border-color:#FF0000">
<input type="radio" style="border-color:#FF0000">
The text box will have a border that is red but the radio button will not take the border color?
© Stack Overflow or respective owner