Highlighting a radio button with CSS
- by dsoftware
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?