কম্পিউটার

CSS-এ :প্রথম-শিশু ছদ্ম-শ্রেণীর ব্যবহার


:first-child ব্যবহার করুন৷ ছদ্ম ক্লাস এমন একটি উপাদানে বিশেষ শৈলী যোগ করতে যা অন্য কোনো উপাদানের প্রথম সন্তান।

উদাহরণ

আপনি :first-child pseudo class-

এর ব্যবহার বোঝার জন্য নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন
<html>
   <head>
      <style>
         div > p:first-child
         {
            text-indent: 25px;
         }
      </style>
   </head>
   <body>
      <div>
         <p>First paragraph in div. This paragraph will be indented</p>
         <p>Second paragraph in div. This paragraph will not be indented</p>
      </div>
         <p>But it will not match the paragraph in this HTML:</p>
      <div>
         <h3>Heading</h3>
         <p>The first paragraph inside the div. This paragraph will not be effected.</p>
      </div>
   </body>
</html>

  1. CSS সারিবদ্ধ-বিষয়বস্তুর বৈশিষ্ট্যের ব্যবহার-মূল্যের মধ্যে স্থান

  2. CSS সারিবদ্ধ-আইটেম সম্পত্তি বেসলাইন মান ব্যবহার

  3. CSS সারিবদ্ধ-সামগ্রী সম্পত্তি ফ্লেক্স-স্টার্ট মান ব্যবহার

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