x
 
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
  resize: none;
}
</style>
</head>
<body>
<h1>禁用文本区域的调整大小</h1>
<p>将 resize 属性设置为 <em>none</em> 以禁用文本区域的调整大小选项:</p>
<textarea rows="4" cols="50">
在 w3school.com.cn,您将学习如何制作网站。他们提供所有 web 开发技术的免费教程。
</textarea>
</body>
</html>