使用 resize 属性可防止调整 textareas 的大小(禁用右下角的“抓取器”):
没有设置resize:none
代码:
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px;
}
</style>
</head>
<body>
<form>
<textarea>Some text...
渲染效果:可以拖动设置大小
添加resize:none文章来源:https://www.toymoban.com/news/detail-633085.html
<!DOCTYPE html>
<html>
<head>
<style>
textarea {
width: 100%;
height: 150px;
padding: 12px 20px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
background-color: #f8f8f8;
font-size: 16px;
resize:none;
}
</style>
</head>
<body>
<form>
<textarea>Some text...
渲染效果:
文章来源地址https://www.toymoban.com/news/detail-633085.html
到了这里,关于【css】textarea-通过resize:none 禁止拖动设置大小的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!