的调整大小抓取器

的调整大小抓取器

本文介绍了如何禁用<textarea>的调整大小抓取器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在中禁用抓取器?

我的意思是出现在 右下角的三角形.

I mean that triangle thing which appears in the right-bottom corner of the <textarea>.

推荐答案

只需使用 resize: none

textarea {
   resize: none;
}

您还可以决定仅水平或垂直调整文本区域的大小,如下所示:

You can also decide to resize your textareas only horizontal or vertical, this way:

textarea { 调整大小:垂直;}

textarea { 调整大小:水平;}

最后,resize: both 启用调整大小抓取器.

Finally,resize: both enables the resize grabber.

这篇关于如何禁用&lt;textarea&gt;的调整大小抓取器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 06:21