运行 ❯
获取您的
自己
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> textarea { resize: none; } </style> </head> <body> <h1>Disable Resizing of Textarea</h1> <p>Set the resize property to <strong>none</strong> to disable the resize option of textareas:</p> <textarea rows="4" cols="50"> At w3schools.com you will learn how to make a website. They offer free tutorials in all web development technologies. </textarea> </body> </html>