I would like to have a set of radio buttons for a donation form, however I want them to look like buttons instead of the circle dials.
What is the best approach to m
EDIT: this isn't a solution if you need to support IE browsers.
You could use CSS appearance property:
SEE DEMO
-webkit-appearance: button; /* WebKit */
-moz-appearance: button; /* Mozilla */
-o-appearance: button; /* Opera */
-ms-appearance: button; /* Internet Explorer */
appearance: button; /* CSS3 */