Home >Backend Development >PHP Tutorial >textrea文本域怎么把默认右下角的几个灰色的点去掉

textrea文本域怎么把默认右下角的几个灰色的点去掉

WBOY
WBOYOriginal
2016-06-23 13:58:371882browse

textrea文本域怎么把默认右下角的几个灰色的点去掉 因为我这个背景是黑色的 有这个灰色很难看 如果去不掉还有什么其他的方法来写多行输入呢


回复讨论(解决方案)

textarea 右下角的装饰图案是浏览器产生的
那个区域属于滚动条的占位区

实在不想要的话,就请改用可编辑的 div

这样就可以

<textarea name="text" style= "overflow:hidden; resize:none;width:500px;height:200px;" id="text"></textarea>

这个是浏览器自带功能,使textarea可以调整size,加  style="resize:none"可解决。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn