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

ตัวเลือกย่อยใน CSS


ตัวเลือกย่อย CSS ใช้เพื่อเลือกองค์ประกอบย่อยทั้งหมดที่มีองค์ประกอบหลักเฉพาะ

ไวยากรณ์

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

element > element {
/*declarations*/
}

ตัวอย่าง

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

<!DOCTYPE html>
<html>
<head>
<style>
* {
   padding: 5px;
}
article > div {
   border: dashed midnightblue;
   width: 45%;
}
div > p {
   font-size: 20px;
   font-style: italic;
   box-shadow: inset 0 0 8px orange;
}
</style>
</head>
<body>
<h2>Examination Detail</h2>
<article>
   <div>Exam Details</div>
   <div><p>Exam begins at 11AM.</p></div>
   <span><div> Do not bring cell phone.</div></span>
   <div>
   <div>Candidates should reach the center till 10:45.</div>
   <br/>
   The candidates need to be bring the Admit Card.
   </div>
</article>
</body>
</html>

ผลลัพธ์

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

ตัวเลือกย่อยใน CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
div {
   margin: auto;
   width: 200px;
   padding: 30px;
   background-color: moccasin;
}
div > div {
   box-shadow: inset 0 0 8px mediumseagreen;
   border-top-right-radius: 50%;
   border-bottom-left-radius: 50%;
}
</style>
</head>
<body>
<div>
<div></div>
</div>
</body>
</html>

ผลลัพธ์

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

ตัวเลือกย่อยใน CSS