কম্পিউটার

CSS-এ :nম-শিশু ছদ্ম-শ্রেণী


CSS :nth-child() pseudo-class একটি উপাদান নির্বাচন করে যা অন্য কোনো উপাদানের nth চাইল্ড এলিমেন্ট।

সিনট্যাক্স

নিম্নলিখিত সিনট্যাক্স −

:nth-child(){
   /*declarations*/
}

উদাহরণ

আসুন CSS :nth-child() Pseudo class −

এর একটি উদাহরণ দেখি
<!DOCTYPE html>
<html>
<head>
<title>CSS :nth-child() Pseudo Class</title>
<style>
form {
   width:70%;
   margin: 0 auto;
   text-align: center;
}
* {
   padding: 2px;
   margin:5px;
   box-sizing: border-box;
}
input[type="button"] {
   border-radius: 10px;
}
.child{
   display: inline-block;
   height: 40px;
   width: 40px;
   color: white;
   border: 4px solid black;
}
.child:nth-child(1){
   background-color: #FF8A00;
}
.child:nth-child(2){
   background-color: #F44336;
}
.child:nth-child(3){
   background-color: #C303C3;
}
.child:nth-child(4){
   background-color: #4CAF50;
}
.child:nth-child(5){
   background-color: #03A9F4;
}
.child:nth-child(6){
   background-color: #FEDC11;
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>CSS :nth-child() Pseudo Class</legend>
<div id="container">
<div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div>
</div><br>
</body>
</html>

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে

CSS-এ :nম-শিশু ছদ্ম-শ্রেণী

উদাহরণ

আসুন CSS nth-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>
<p>Famous Cricket Stadiums</p>
<ul>
<li>Eden Gardens, Kolkata, India</li>
<li>Melbourne Cricket Ground, Melbourne, Australia</li>
<li>DY Patil Sports Stadium, Navi Mumbai, India</li>
</ul>
</body>
</html>

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে

CSS-এ :nম-শিশু ছদ্ম-শ্রেণী


  1. সিএসএসে :প্রথম শিশু ছদ্ম-শ্রেণী

  2. CSS-এ ন্যূনতম-প্রস্থ সম্পত্তি

  3. CSS-এ আউটলাইন-প্রস্থ সম্পত্তি

  4. CSS-এ বর্ডার-কালার প্রপার্টি