Increase size of checkbox in asp.net?

asp.net, c#, css

Solution

You can't do it. A Checkbox is a windowed browser component. The best you can do is to make your own control that LOOKS like a checkbox, but is actually made up of an image for each state.

Here are some examples of controls that use images instead of checkboxes:

- ASP.Net AJAX AJAXControlToolkit

- CodeProject example

- Checkboxes and radiobuttons

- ImageCheckbox

Problem

I really tried a lot to increase a size of checkbox in asp.net. using css style sheet but it doesn't work. Might be I have done something wrong. I am try to increase the width, size and height of checkbox, but it doesnt happen yet. Can anyone provide C# code or css code that can do this?

Original source

Related problems