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

แอตทริบิวต์แถว HTML


แอตทริบิวต์แถว HTML กำหนดความสูงที่มองเห็นได้ของ พื้นที่ข้อความ องค์ประกอบในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

<textarea rows=”number”></textarea>

ให้เรามาดูตัวอย่างแถว HTML Attribute −

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
</style>
<body>
<h1>HTML rows Demo</h1>
<textarea rows="10" cols="20">Hi! I'm a textarea element with some dummy text.</textarea>
</body>
</html>

ผลลัพธ์

แอตทริบิวต์แถว HTML