gpt4 book ai didi

css - 根据内容设置textarea的初始高度

转载 作者:行者123 更新时间:2023-11-28 19:23:56 25 4
gpt4 key购买 nike

我使用响应式(Reactive) Angular 形式来保存所有禁用的字段。事实证明,textarea 会创建一个滚动条,让那些只是想像的人难以阅读。

我已经尝试过使用 css

 textarea:disabled {
height: 100%;
font-size: 13px;
text-align: justify;
resize: none;
}

enter image description here

我希望它根据其内容展开,表现得像一个带有适当填充的 DIV。

最佳答案

感谢@adrian Brand 从你的代码中我制作了其他 Implements 并且我得到了预期的结果

ngAfterContentChecked() {
var vtextarea = this.elRef.nativeElement.querySelectorAll('textarea')
for(let i=0;i<vtextarea.length;i++){
vtextarea[i].style.height = vtextarea[i].scrollHeight + 'px';
}
}

在没有滚动条的情况下更好地查看的 css

textarea:disabled{
height: 100%;
font-size: 13px;
text-align: justify;
resize: none;
overflow: hidden;

}

关于css - 根据内容设置textarea的初始高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56746277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com