কম্পিউটার

CSS ন্যায্যতা-সামগ্রী


justify-content ব্যবহার করে ফ্লেক্স আইটেমগুলি সারিবদ্ধ করুন৷ সম্পত্তি আপনি ন্যায্যতা-সামগ্রী বৈশিষ্ট্য বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         .mycontainer {
            display: flex;
            background-color: orange;
            justify-content: center;
         }
         .mycontainer > div {
            background-color: white;
            text-align: center;
            line-height: 40px;
            font-size: 25px;
            width: 100px;
            margin: 5px;
         }
      </style>
   </head>
   <body>
      <h1>Quiz</h1>
      <div class = "mycontainer">
         <div>Q1</div>
         <div>Q2</div>
         <div>Q3</div>
         <div>Q4</div>
      </div>
   </body>
</html>

  1. CSS-এ চাইল্ড সিলেক্টর

  2. CSS-এ ব্যাকগ্রাউন্ড অ্যাটাচমেন্ট

  3. ফ্লেক্সবক্সের সাথে অগ্রিম CSS লেআউট

  4. বিশুদ্ধ CSS সহ মসৃণ স্ক্রলিং