CSS에서 전체 페이지 텍스트 영역을 만드는 방법

2490 단어 webdevcsshtmltutorial
가자 🚀,

<textarea class="txt" cols="30" rows="10" placeholder="Enter some text!" value={text} onChange={e => setText(e.target.value)} onKeyDown={keySound}></textarea>



*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100%;
  overflow: hidden;
}
textarea{
  width: 100%;
  height: 100vh;
  resize: none;
  margin: 5px;
  font-size: 25px;
  outline: none;
  border: none;
}



읽어 주셔서 감사합니다!
  • 트위터에서 팔로우 🐦 -
  • YouTube에서 저를 구독하세요 -
  • GitHub에서 나를 팔로우하세요 - codewithsnowbit
  • 좋은 웹페이지 즐겨찾기