Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Remove textarea resizing with CSS</title> <style> textarea.wt-resize { resize: none; } </style> </head> <body> <form> <h2>Normal Textarea</h2> <textarea rows="5" cols="50"></textarea> <h2>Textarea without resizable property</h2> <textarea rows="5" cols="50" class="wt-resize"></textarea> </form> </body> </html>