textare去掉边框,背景色透明,关闭大小缩放 电脑版发表于:2020/4/18 1:27 背景色透明: ```css background-color: transparent ``` 关闭大小缩放: ``` resize: none ``` 去掉边框 ``` border-style:none; ``` >直接这样虽然可以隐藏边框,但是在编辑的时候还是能看到 所以可以这样做: ``` border: solid 0px; outline:none; ``` 贴一个完整一点的 ``` <textarea style="width:100%;height:300px;border: solid 0px;outline:none;border-color:#fff;overflow:hidden;background-color: transparent;resize: none;"> 哈哈 </textarea> ```