我的网站无法更改文本框的高度

The height of the text box cannot be changed on my website

尽管在论坛上进行了搜索,但我找不到解决我的文本框问题的方法,我无法缩小它。如果我设法改变它,点击后它会在后台再次放大,我需要将它的高度降低到80px。

enter link description here

你能告诉我应该使用哪个 class 来使文本框真正变小吗?谢谢大家!

你的文本框高度是 80px 如果你想减少你必须改变 css

textarea.box_custom_size_class {
    max-height: 80px;
    resize: none;
    height: auto;
}

更改max-height值