我正在使用textarea
HTML 中的元素并希望删除框的边框。我还想对齐底部的文本textarea
。
问问题
136344 次
5 回答
84
textarea {
border: none;
outline: none;
}
于 2009-06-25T05:03:58.213 回答
53
在 CSS 中:
textarea {
border-style: none;
border-color: Transparent;
overflow: auto;
}
于 2009-06-25T05:07:22.390 回答
4
这个很棒:
<style type="text/css">
textarea.test
{
width: 100%;
height: 100%;
border-color: Transparent;
}
</style>
<textarea class="test"></textarea>
于 2011-08-15T22:40:11.413 回答
1
textarea {
border: 0;
overflow: auto; }
更少的 CSS ^ 不幸的是,您无法将文本与底部对齐。
于 2009-06-25T11:56:30.723 回答
0
此外,您可以删除调整大小图标
textarea {resize:none;}
于 2021-12-16T16:45:12.327 回答