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

:first-child Pseudo-class ใน CSS


CSS :first-child pseudo-class เลือกองค์ประกอบที่เป็นองค์ประกอบลูกแรกขององค์ประกอบอื่นๆ

ไวยากรณ์

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

:first-child{
   /*declarations*/
}

ตัวอย่าง

มาดูตัวอย่าง CSS first-child Pseudo class กัน −

<!DOCTYPE html>
<html>
<head>
<style>
table {
   margin: auto;
   padding: 10px;
   border: hsl(54, 100%, 50%) solid 13px;
   border-radius: 6px;
   text-align: center;
}
td, th {
   border-left: 2px solid black;
   border-top: 3px solid black;
}
td:first-child, th:first-child {
   border-left: none;
}
th {
   background-color: lightblue;
   border-top: none;
}
caption {
   margin-top: 3px;
   background-color: purple;
   caption-side: bottom;
   color: white;
   border-radius: 20%;
}
</style>
</head>
<body>
<table>
<caption>MCA Syllabus</caption>
<tr>
<th colspan="4">Subjects</th>
</tr>
<tr>
<td>C</td>
<td>C++</td>
<td>Java</td>
<td>C#</td>
</tr>
<tr>
<td>MySQL</td>
<td>PostgreSQL</td>
<td>MongoDB</td>
<td>SQLite</td>
</tr>
</table>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ก่อนใช้ตัวเลือกคลาสหลอกลูกคนแรก -

:first-child Pseudo-class ใน CSS

หลังจากใช้ตัวเลือกคลาสหลอกลูกคนแรก -

:first-child Pseudo-class ใน CSS

ตัวอย่าง

มาดูตัวอย่างอื่นของ CSS first-child Pseudo class −

<!DOCTYPE html>
<html>
<head>
<style>
* {
   font-size: 1.1em;
   list-style: circle;
}
li:first-child {
   background-color: seashell;
   font-family: cursive;
}
li:nth-child(2) {
background-color: azure;
font-family: "Brush Script Std", serif;
}
li:last-child {
   background-color: springgreen;
   font-family: "Gigi", Arial;
}
</style>
</head>
<body>
<h2>Apache Spark</h2>
<ul>
<li>Apache Spark is a lightning-fast cluster computing technology, designed for fast computation. </li>
<li>It is based on Hadoop MapReduce.</li>
<li>It extends the MapReduce model to efficiently use it for more types of computations.
</li>
</ul>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

:first-child Pseudo-class ใน CSS