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

รายการ HTML คุณสมบัติ


แอตทริบิวต์รายการ HTML หมายถึงองค์ประกอบ ที่มีตัวเลือกที่กำหนดไว้ล่วงหน้าสำหรับองค์ประกอบ ในเอกสาร HTML

ไวยากรณ์

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

<input list=”text”>

ให้เราดูตัวอย่างแอตทริบิวต์รายการ HTML:

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      height: 100vh;
      background-color: #8BC6EC;
      background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
      text-align: center;
   }
   input {
      display: block;
      width: 60%;
      margin: 1rem auto;
   }
</style>
<body>
<h1>HTML list Attribute Demo</h1>
<input list="subject" placeholder='Select your elective subject'>
<datalist id='subject'>
<option>Maths</option>
<option>Physics</option>
<option>Economics</option>
</datalist>
</body>
</html>

ผลลัพธ์

รายการ HTML คุณสมบัติ