I have the following ASP.Net check box control added to a page:
Bu
Ok, when you apply a CssClass to the ASP.Net check box control it applies the class to a span that wraps the check box. Because the css class isn't applied directly to the element it doesn't override the class that has been applied to all input elements.Therefore I used jQuery to select the element and apply the necessary style.
$("input[type=checkbox]").addClass("myClass");