IE下textarea默认不显示滚动条的实现代码
脚本之家
IE下textarea默认情况下会显示出竖直方向的滚动条:
<textarea style="height:100px;"></textarea>
如果需要隐藏滚动条,行数超过height时才显示出滚动条,需要把overflow设置为auto:
<textarea style="height:100px;overflow:auto;"></textarea>
<textarea style="height:100px;"></textarea>
如果需要隐藏滚动条,行数超过height时才显示出滚动条,需要把overflow设置为auto:
<textarea style="height:100px;overflow:auto;"></textarea>