Answers for "how to fix when adjust height and auto grow width in textarea in js"

CSS
2

make textarea auto height

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

Code answers related to "how to fix when adjust height and auto grow width in textarea in js"

Browse Popular Code Answers by Language