Can you change the size of a form?

liunx

Guest
Say we have a standard form:

<form ........ /form>

How do you shrink the size of the text boxes???

I've seen someone's website that had small text boxes for their username and password login area. I can't remeber who, so I am at a lost as to how to do this.

Thanks!size="10" or whatever number you wish, inside the tag.input {
font-size: x-small;
padding: 0;
}Thanks guys,

I was declaring the size in the form tag, lol!you can use css by telling exactly how many pixels wide you want the text box... I have noticed in Firefox and IE that the sizes are not the same when setting the size in the input formgood point, thx
 
Back
Top