const handleTextareaChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => { const textarea = e.target; if (textarea.scrollHeight > INPUT_FONT_SIZE * 5) { return; } textarea.style.height = 'auto'; textarea.style.height = textarea.scrollHeight + 'px'; };
textarea 입력 3줄 까지만 늘어나게 하기
Tags
React
CSS
TypeScript
날짜
Feb 6, 2023
상태
공개