[HTML] How to make a box

PHP:
<textarea>
</textarea>

I don't think you can define a text area's size in pixels.
You do it in rows and columns.

eg:
PHP:
<textarea rows='4' columns='5'></textarea>
 
Last edited:
There are two types of boxes, there are input-boxes and textarea-boxes.

Input boxes are:

PHP:
<input type="text" name="BOX_NAME" size="40" value="Hello">

Textarea boxes are:

PHP:
<textarea cols="30" rows="4" name="TEXTAREA_NAME">Hello!</textarea>
 
Back