CSS 从IE中的Textarea中删除滚动条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 从IE中的Textarea中删除滚动条相关的知识,希望对你有一定的参考价值。

/* By default all versions of IE have a scrollbar on textareas, even when they are empty.

No other browsers do this, so if you want to remove it so IE can visually match other browsers, just: */

textarea { overflow: auto; }

/* The scrollbar will return (rightfully) when the text in the textarea expands beyond it's bounds. */

以上是关于CSS 从IE中的Textarea中删除滚动条的主要内容,如果未能解决你的问题,请参考以下文章

CSS 在IE中删除textarea滚动条

删除IE中的textarea滚动条

删除IE中默认禁用的textarea滚动条

删除IE中的垂直文本区域滚动条

JavaFX - 如何从TextArea隐藏滚动条?

JQGrid当autowidth = true时,如何删除恼人的水平滚动条? (在IE中)