কম্পিউটার

CSS দিয়ে কলামের মধ্যে নিয়মের স্টাইল সেট করুন


কলামের মধ্যে নিয়মের স্টাইল সেট করতে, কলাম-রুল-স্টাইল ব্যবহার করুন সম্পত্তি আপনি কলাম-নিয়ম-শৈলী বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন সম্পত্তি।

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-gap: 50px;
            column-rule-color: maroon;
            column-rule-style: dashed;
         }
      </style>
   </head>
   <body>
      <div class = "demo">
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
      </div>
   </body>
</html>

  1. পাঠ্যের শেষ লাইনটি CSS দিয়ে সারিবদ্ধ করুন

  2. অ্যানিমেশন দিয়ে CSS কলামের বৈশিষ্ট্য পরিবর্তন করুন

  3. সিএসএসে পাঠ্য সজ্জার রঙ সেট করুন

  4. CSS-এ টেক্সট ডেকোরেশনের স্টাইল সেট করুন