Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I remove checkbox border?

Tags:

html

css

checkbox

Is it possible to remove the borders around a checkbox so that it appears invisible? I have it placed in a DIV with a color background.

like image 309
Erik Avatar asked Aug 23 '10 04:08

Erik


1 Answers

As this is the first result for me when searching for "remove checkbox border" in Google, let me mention that checkbox default styling could be removed in all browsers except IE with the appearance property:

-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
like image 101
Petar Avatar answered Oct 18 '22 21:10

Petar