Home 使用CSS设置textarea不可拖动
Post
Cancel

使用CSS设置textarea不可拖动

默认情况下,我们将鼠标移动到<textarea>的右下角时发现文本域是可以通过拖动的方式改变其大小的,这会影响我们原本的页面布局。 若想设置其不可拖动,可为其添加如下属性:

1
<textarea style="resize:none;"></textarea>
This post is licensed under CC BY 4.0 by the author.