How do I set the size of an HTML text box?
Just use:
textarea { width: 200px; }
or
input[type="text"] { width: 200px; }
Depending on what you mean by 'textbox'.