[CSS] input, textarea

Z6su3·2023년 1월 16일

CSS

목록 보기
7/7

🐇 input

input에 적용할 수 있는 css 및 행위

🥕 밑줄 만들기

outline: 0;
border-width: 0 0 2px;
border-color: white;
background: none;

🐇 textarea

textarea에 적용할 수 있는 css 및 행위

🥕 자동 크기변환

const handleResizeHeight = (e) => {
	e.target.style.height = "auto";
	e.target.style.height = e.target.scrollHeight + "px";
}
<textarea
	onChange={handleResizeHeight}
></textarea>
profile
기억은 기록을 이길수 없다

0개의 댓글