HTML & CSS
/Beginner
Textarea
Definition
The `<textarea>` element represents a multi-line plain-text editing control.
Explain Like I'm New
An `<input type="text">` is a single-line box, perfect for names or emails. A `<textarea>` is a massive, multi-line box, perfect for comments, essays, or messages.
Real World Example
The comment box on YouTube or the 'Message' field on a Contact Us page.
Common Use Cases
- •Collecting long-form text input
Interactive Example
Interview Questions
basic
- Is `<textarea>` a self-closing tag like `<input>`?
intermediate
- How do you control the initial size of a textarea?