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

ตั้งค่าการตัดข้อความในแบบฟอร์มใน HTML


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

ตัวอย่าง

<!DOCTYPE html>
<html>
   <body>
      <form action = "">

         <textarea rows = "2" cols = "12" name = "details" wrap = "hard">
         This is demo text This is demo text This is demo text This is demo text</textarea><br>

         <input type = "submit">
      </form>
   </body>
</html>