JJ Beck
JJ Beck

Reputation: 5283

HTML input box more than one line

I have an HTML form

<form id="my_form" action="submit">
  Title: <input type="text" name="title"> 
</form> 

I'd like the title input box to have height more than one line, instead of just one line. How can I do it?

Upvotes: 0

Views: 450

Answers (1)

Zoltan Toth
Zoltan Toth

Reputation: 47667

Short answer - you can't do it. Use <textarea> instead.

Upvotes: 6

Related Questions