Horje

How to set width and height of textarea

Styling Textarea Use CSS to change the size of the textarea:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>Styling Textarea</h2>

<p>Use CSS to change the size of the textarea:</p>

<form action="/action_page.php">
  <textarea name="message" style="width:200px; height:600px;">The cat was playing in the garden.</textarea>
  <br>
  <input type="submit">
</form>

</body>
</html>

Output should be:

How to set width and height of textarea




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Form Elements
Uploaded by:
Admin