让文本域不显示滚动条和边框

来源:互联网 发布:深度linux 编辑:程序博客网 时间:2024/05/18 04:10

 让文本域不显示边框和滚动条并且文本域的高度会随着内容而变化: 

<textarea style="width: 100%; height: 100%; padding-bottom: 0px;       margin-bottom: 0px; font-size: 13px; border: 0; overflow: hidden;"      readonly="readonly">内容</textarea>

只显示上下滚动条:

<textarea style="width: 100%; border:none;border-bottom:1px;OVERFLOW-X: hidden; OVERFLOW-Y: auto" readonly="true" >内容</textarea>