Textarea tag in HTML 5

Textarea tag in HTML 5

Definition and Usage

(A multi-line text input area) is defined a text area (text-area). The user can write text in a text area. In a text field, you can enter an unlimited amount of text. Text area default font is a monospaced font (fixed pitch).

example

<textarea rows="3" cols="30">
这里是文本域中的文本 ... ... ... ...
</textarea>

Attributes

img

Global Properties

Tag supports the global attributes in HTML 5 .

Event Properties

Tag supports event attributes in HTML 5 .

Guess you like

Origin www.cnblogs.com/TMesh/p/11832815.html