องค์ประกอบ dl ใน HTML ใช้เพื่อกำหนดรายการคำอธิบาย ใน HTML5
- ใช้เพื่อกำหนดรายการคำอธิบาย ในขณะที่
- องค์ประกอบด้านบนกำหนดคำศัพท์ในรายการคำจำกัดความ ในขณะที่
- ยังกำหนดคำศัพท์ แต่คุณสามารถเพิ่มลิงก์ รูปภาพ ตัวแบ่งบรรทัดภายใน
- .
- .
- ในรายการคำจำกัดความที่กำหนด HTML4
ให้เราดูตัวอย่างการใช้แท็ก
- -
ตัวอย่าง
<!DOCTYPE html> <html> <body> <h2>Sports</h2> <dl> <dt>Football</dt> <dd>It is played by 250 million players in over 200 countries.</dd> <dt>Cricket</dt> <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd> <dt>Hockey</dt> <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd> <dt>Golf</dt> <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd> </dl> </body> </html>
ผลลัพธ์
ในตัวอย่างข้างต้น เราได้ตั้งค่า
- เพื่อตั้งค่ารายการคำอธิบาย -
<dl> <dt>Football</dt> <dd>It is played by 250 million players in over 200 countries.</dd> <dt>Cricket</dt> <dd>It is a bat-and-ball game played between two teams of eleven players on a field.</dd> <dt>Hockey</dt> <dd>There are many types of hockey such as bandy, field hockey, and ice hockey.</dd> <dt>Golf</dt> <dd>It is a club-and-ball sport in which players use various clubs to hit balls into a series of holes on a course in as few strokes as possible.</dd> </dl>