I am making a site and it has several forms and I want all textboxes, dropdowns and textarea to be of 200px etc. on the forms. For that I put the code in my style sheet:
input,select,textarea { width: 200px; }
But this code also inceases the width of buttons, option buttons and checkboxes also by 200px.
How to force width to textboxes, select and textarea also and not others ???