Reputation: 1696
I simply don't find any instructions how to style a radio button like the div in my example here: http://jsfiddle.net/Q5SRe/
The div:
div {
width:50px;
height:50px;
background-color:green
}
also I would like that when the radio button is selected it has:
border: medium solid #000;
Upvotes: 4
Views: 4147
Reputation: 12869
Radio buttons are part of the Shadow DOM, which as of yet can't be universally styled across browsers.
The best way currently to get custom radio buttons is to use images or the checkbox hack.
Upvotes: 7