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

ตัวเลือกลูกหลานใน CSS


ตัวเลือกองค์ประกอบ CSS ใช้เพื่อเลือกลูกหลานขององค์ประกอบแรกที่มีชื่อองค์ประกอบตรงกับตัวเลือกที่สอง

ไวยากรณ์

ไวยากรณ์สำหรับตัวเลือกลูกหลาน CSS มีดังต่อไปนี้ -

element element {
   /*declarations*/
}

ตัวอย่าง

ตัวอย่างต่อไปนี้แสดงให้เห็นถึงตัวเลือกลูกหลาน CSS -

<!DOCTYPE html>
<html>
<head>
<style>
div {
   float: right;
   margin: 25px;
   padding: 5px;
   width: 80px;
   height: 80px;
   border: solid aqua;
}
div div {
   border-color: blue;
   border-radius: 50%;
}
div div div {
   border-color: orange;
   border-radius: unset;
}
</style>
</head>
<body>
<div>
<div>
<div>
</div>
</div>
</div>
</body>
</html>

ผลลัพธ์

สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -

ตัวเลือกลูกหลานใน CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
li li {
   background-color: lightsteelblue;
}
</style>
</head>
<body>
<ol>
<li></li>
<ul>
<li>
<ul>
<li></li>
</ul>
</li>
</ul>
<li></li>
</ol>
</body>
</html>

ผลลัพธ์

สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -

ตัวเลือกลูกหลานใน CSS