Thuộc tính cols của phần tử
Sau đây là cú pháp -
Ở trên, num là chiều rộng của vùng văn bản. Giá trị mặc định là 20.
Bây giờ chúng ta hãy xem một ví dụ để triển khai thuộc tính cols của phần tử
Trong ví dụ trên, chúng tôi đã đặt hai vùng văn bản -
Chiều rộng của vùng văn bản được đặt bằng thuộc tính cols - <textarea cols="num">
Ví dụ
<!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>
Đầu ra
<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>
<textare arows="6" cols="70" autofocus>