H Henry New member Sep 27, 2009 #1 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
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
F Frederic New member Sep 27, 2009 #2 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>
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>