HTML 행 속성은 텍스트 영역 의 가시적 높이를 정의합니다. HTML 문서의 요소입니다.
구문
다음은 구문입니다 -
<textarea rows=”number”></textarea>
HTML 행 Attribute −
의 예를 살펴보겠습니다.예시
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML rows Demo</h1> <textarea rows="10" cols="20">Hi! I'm a textarea element with some dummy text.</textarea> </body> </html>
출력