damon2003
11-20-2003, 06:46 AM
Hi,
I want to make textfields height smaller,
how can this be done?
thanks
I want to make textfields height smaller,
how can this be done?
thanks
|
Click to See Complete Forum and Search --> : how to make textfields smaller? damon2003 11-20-2003, 06:46 AM Hi, I want to make textfields height smaller, how can this be done? thanks pyro 11-20-2003, 07:39 AM By textfield, do you mean input type="text" or <textarea>? For the first, you can either set all input fields, like this: input { height: 10px; } Or, give the input type="text" fields a class, and do it like this: .classname { height: 10px; } With your input fields looking like this: <input type="text" name="foo" class="classname" For textareas, it is the same as the first method for setting input fields: textarea { height: 10px; } webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |