HTML Form How to - Hide right side scrolbar for Textarea








Question

We would like to know how to hide right side scrolbar for Textarea.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
textarea {<!--from   ww w .ja v a  2s  . co m-->
  height: 150px;
  width: 300px;
  overflow: hidden
}
</style>
</head>
<body>
  <textarea name="" cols="" rows=""></textarea>
</body>
</html>

The code above is rendered as follows: