How to customize checkbox / radio without using background: url?

2

Whenever I search on "customize", "checkboxes" and "radios", examples appear using background:url(image.png) .

Is there a way to customize a "checkbox" only with "CSS" without using background:url ?

    
asked by anonymous 28.05.2015 / 15:06

1 answer

1

You can try to use -webkit-appearance: none; to reset the default style and customize the radio and other input elements, as well explained in that article .

    
28.05.2015 / 15:34