HTML textarea 태그

1 개요[ | ]

HTML textarea tag
HTML textarea 태그
  • HTML 텍스트 박스
  • 여러 행 텍스트 입력 컨트롤
  • 여러 행으로 이루어진 문자열을 입력 받는 필드
  • input 태그와는 달리[1], 태그 사이에 기본값 입력

2 예시[ | ]

html
Copy
<textarea rows="4" cols="50">
안녕
친구들
</textarea>

3 같이 보기[ | ]

4 주석[ | ]

  1. input 태그는 value 속성으로 입력

5 참고[ | ]

  • HTML 커스텀 태그
    Error: Element asdf not allowed as child of element body in this context. (Suppressing further errors from this subtree.) HTML5 검사 도구에서 에러가 나옵니다. 커스텀 태그를 만들 때, Mywikier