카테고리 없음

textarea 크기 조절 방지하기 - css

되꼬다음 2023. 2. 20. 14:35
반응형

크기 조절 방지

<textarea style="resize:none"></textarea>

 

높이만 조절 가능

<textarea style="resize:vertical"></textarea>

 

넑이만 노절 가능

<textarea style="resize:horizontal"></textarea>

 

2020.09.28 - [분류 전체보기] - TEXTAREA 높이 자동조절

 

TEXTAREA 높이 자동조절

$("textarea").each(function() { var offset = this.offsetHeight - this.clientHeight; var resizeTextarea = function(el) { $(el).css('height', 'auto').css('height', el.scrollHeight + offset); }; $(this).on('keyup input focusin', function() { resizeTextarea(th

am0900.tistory.com

 

반응형