CSS 文本域样式
设置文本域的样式
提示:使用 resize
属性可防止对 textareas 调整大小(禁用右下角的“抓取器”):
实例
<!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>
<p><b>提示:</b>使用 resize 属性可防止调整 textareas 的大小(禁用右下角的“抓取器”):</p>
<form>
<textarea>Some text...</textarea>
</form>
</body>
</html>