- Practical Web Development
- Paul Wellens
- 50字
- 2021-07-16 13:14:07
Textarea
When input is expected in a form that is longer than just a few words, you can use the textarea
element to display an input box. You can specify the size of the box in rows and columns by using the rows
and cols
attributes. Here is an example:
<textarea row="4" cols="50" id="mytextbox"> </textarea>
推薦閱讀