也许有人可以给我一个提示,如何创建不可缩放的textareas?
我试过像往常一样的东西:
<g:textArea name="tumble" value="myVtumble" rows="2" cols="2" />
<style>
#tumble {
resize: none;
}
//or
#tumble {
max-height: 10px;
height: 10px;
width: 10px;
max-width:10px:
}
</style>
如何删除边框?属性中的border="0"
不会成为
非常感谢,希望我表达我的问题可以理解
答案 0 :(得分:2)
您没有任何身份证明。所以试试:
<g:textArea name="tumble" id="tumble" value="myVtumble" rows="2" cols="2" />
或
<style>
textarea[name='tumble'] {
resize: none;
}
</style>