다음은 구문입니다 -
<textarea cols="num">
위에서 num은 텍스트 영역의 너비입니다. 기본값은 20입니다.
이제
의 cols 속성을 구현하는 예를 살펴보겠습니다.예시
<!DOCTYPE html> <html> <body> <h2>Interview Questions</h2> <p>Why do you want go for the Editor Job Profile? (100 words)</p> <textarea rows="6" cols="70"> Write the answer in 100 words only... </textarea> <p>What are your weaknesses? (50 words)</p> <textarea rows="4" cols="70"> Write the answer in 50 words only... </textarea> </body> </html>
출력
위의 예에서 두 개의 텍스트 영역을 설정했습니다 -
<textarea rows="6" cols="70"> Write the answer in 100 words only... </textarea> <p>What are your weaknesses? (50 words)</p> <textarea rows="4" cols="70"> Write the answer in 50 words only... </textarea>
텍스트 영역의 너비는 cols 속성으로 설정됩니다 -
<textare arows="6" cols="70" autofocus>