Answers for "angular textarea automatic height"

1

textarea autosize angular

You can use it for angular
<textarea cdkTextareaAutosize></textarea>
Posted by: Guest on October-12-2021
1

make textarea auto height

function autoResize() {
	console.log('resizing');
	textInput.style.height = (textInput.scrollHeight) + 'px';
}
Posted by: Guest on September-05-2021

Browse Popular Code Answers by Language