Horje

How to Disable default resize option HTML textarea

The textarea element - Disable default resize option.

index.html
Example: HTML
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
  resize: none;
}
</style>
</head>
<body>

<h1>The textarea element - Disable default resize option</h1>

<p><label for="w3review">Review of Horje:</label></p>

<textarea id="w3review" name="w3review" rows="4" cols="50">
At horje.com you will learn how to make a website. They offer free tutorials in all web development technologies.

Output should be:

How to Disable default resize option HTML textarea




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin