Computer >> Máy Tính >  >> Lập trình >> HTML

Thuộc tính cols HTML


Thuộc tính cols của phần tử

Sau đây là cú pháp -

<textarea cols="num">

Ở 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ử

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

Thuộc tính cols HTML  textareosystem

Trong ví dụ trên, chúng tôi đã đặt hai vùng văn bản -

<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>

Chiều rộng của vùng văn bản được đặt bằng thuộc tính cols -

<textare arows="6" cols="70" autofocus>