Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

เราจะแสดงความกว้างที่มองเห็นได้ของพื้นที่ข้อความใน HTML ได้อย่างไร


ใช้แอตทริบิวต์ cols ใน HTML เพื่อแสดงความกว้างที่มองเห็นได้ของ textarea คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน cols แอตทริบิวต์ −

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <textarea rows="3" cols="40">
         This is a demo paragraph. This is a demo paragraph.
         This is a demo paragraph. This is a demo paragraph.
      </textarea>
   </body>
</html>