I'm getting trouble when i try to change the width of my input checkbox.
all inputs are width:200px (text, button, checkbox). But i need a width:20px only for checkbox.
Is it possible?
input[type=checkbox] { width: 20px; }
You can set via CSS smaller size than default for checkbox but not larger. If you want to increase size of checkbox, you'll need jquery. Example LINK