Filter (Advanced Search)
Downloads
0
Views
240
Video

Video is not available... Embedded is previous playlist.

Details

You can also define the size of the text area by using CSS:


<!DOCTYPE html>
<html>
<body>

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

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

</body>
</html>



Ad