Answers for "textarea width in percentage affecting height"

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 "textarea width in percentage affecting height"

Browse Popular Code Answers by Language