This article is currently in the process of being translated into Thai (~76% done).
Forms:
Multiline Textboxes - The textarea tag
บางทีเราต้องการให้ผู้ใช้กรอกข้อความที่มีความยาวมากๆ เราจะใช้ <textarea> element
เราสามารถกำหนดได้โดยการใช้ตัวแปร rows และ cols ย่อมาจาก column
ตัวอย่างเช่น textarea ที่มีความกว้าง 25 column (แถวแนวตั้ง) และมีความสูง 7 row (แถวแนวนอน)
<form method="post">
<textarea cols="25" rows="7"></textarea>
<br />
<input type="submit" value="Submit now" />
</form>
This article has been fully translated into the following languages:
Is your preferred language not on the list? Click here to help us translate this article into your language!