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
            Asked
            
        
        
            Active
            
        
            Viewed 170 times
        
    3 Answers
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
 
    