কম্পিউটার

জাভাস্ক্রিপ্ট দিয়ে কলামগুলির মধ্যে ফাঁক কীভাবে সেট করবেন?


কলামগুলির মধ্যে ফাঁক সেট করতে, কলাম গ্যাপ ব্যবহার করুন সম্পত্তি।

উদাহরণ

জাভাস্ক্রিপ্ট -

দিয়ে কলামগুলির মধ্যে ফাঁক কীভাবে সেট করতে হয় তা শিখতে আপনি নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন

<!DOCTYPE html>
<html>
   <body>
      <p>Click below to create 4 columns and set gap of 30px</p>
      <button onclick="display()">Columns</button>
      <div id="myID">
         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>
      <script>
         function display() {
            document.getElementById("myID").style.columnCount = "4";
            document.getElementById("myID").style.columnGap = "30px";
         }
      </script>
   </body>
</html>

  1. জাভাস্ক্রিপ্টের সাথে একটি পাঠ্যের অক্ষরের মধ্যে স্থান কীভাবে সেট করবেন?

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

  3. CSS দিয়ে কলামের মধ্যে ফাঁক উল্লেখ করুন

  4. CSS দিয়ে কলামের মধ্যে নিয়মের প্রস্থ সেট করুন