主頁
CSS
CSS 使用者介面
Tryit:停用文字區域的調整大小
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> textarea#test { resize: none; } </style> </head> <body> <h1>The resize Property</h1> <p>In many browsers, textarea elements are resizable by default. In this example, we have used the resize property to disable the resizability:</p> <textarea id="test">Textarea - Not resizable</textarea> <br><br> <textarea>Textarea - Resizable (default)</textarea> </body> </html>