HTML Form How to - Disable textarea resize








Question

We would like to know how to disable textarea resize.

Answer


<!--from   w ww  . jav  a 2s. co  m-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
textarea {
  height: 30px;
  resize: none;
}
</style>
</head>
<body>
  <textarea></textarea>
</body>
</html>

The code above is rendered as follows: