Answers for "fix width textarea"

6

fix textarea size

resize: none;
Posted by: Guest on May-16-2020
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