tags:

views:

218

answers:

2

can i change border color of checkbox by use css or jquery. i want change only border color of check box.

+2  A: 

Checkboxes are notorious for behaving differently to styles for each browser that renders them. As Nick Craver commented, images are the only reliable way to style checkboxes safely.

starskythehutch
+5  A: 

if you want to do this with pure css, you won't get an result that works in all browsers. if you use jqueryUI there are some implementations of checkboxes like this or this. otherwise you'll have to do something similar by yourself using images.

oezi