What is the default height of a textbox in html?

Henry

New member
What is the default height of an html textbox in pixels. I need to know so i can make an image the same height.

Thanks in advance
 
By default, the width of a text box is 20 characters. The height is dependent on the font size used. However, you can create a text area and specify the size:

<textarea rows="10" cols="30">This is text in a text area.</textarea>
 
Back
Top