-5

I have textarea in my website and i want to make user not allow to resize this textarea. But I use this languages only : php - html - jquery - javascript

Amir Essam
  • 19
  • 1
  • 3

3 Answers3

1

textarea {
   resize:none;
}
<textarea rows="3"></textarea>

Try this

Adam Azad
  • 11,171
  • 5
  • 29
  • 70
1

Try this

<textarea rows="4" cols="50" style="resize:none;">
    At w3schools.com you will learn how to make a website. We offer free tutorials in all web development technologies. 
</textarea>
Jakir Hossain
  • 2,457
  • 18
  • 23
1

try this

<html>
<head>
</head>
<body>
    <textarea style="overflow:auto;resize:none" rows="10" cols="20"></textarea>
</body>
</html>
Vigneswaran S
  • 2,039
  • 1
  • 20
  • 32