如何删除文本区域框中不需要的css属性
我在屏幕截图中标记它将清楚地理解我的问题
在屏幕截图文本区域框右下方3行显示如何删除
$(el).click(function(event) {
console.log(this) // { "my": "context" }
console.log(event.currentTarget); // [DOMElement]
}.bind({
my: 'context'
}));
textarea{
margin: 0px ;
-webkit-box-shadow: none ;
box-shadow: none ;
border-color: transparent ;
height: 38px ;
}
答案 0 :(得分:3)
将样式添加到textarea
textarea {
resize: none;
}
答案 1 :(得分:1)
根据你的屏幕截图,如果你想停止调整大小使用这个css,你可以推销用于调整textarea大小的右下角部分
textarea{
margin: 0px ;
-webkit-box-shadow: none ;
box-shadow: none ;
border-color: transparent ;
height: 38px ;
border: 1px solid #000 ;
resize: none ;
}

<textarea id="txtarqlmchat"></textarea>
&#13;