কম্পিউটার

CSS দিয়ে একটি প্রতিক্রিয়াশীল গ্রিড-ভিউ তৈরি করা


আপনি একটি প্রতিক্রিয়াশীল গ্রিড-ভিউ তৈরি করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
      <style>
         * {
            box-sizing: border-box;
         }
         .header {
            border: 1px solid black;
            padding: 10px;
         }
         .leftmenu {
            width: 30%;
            float: left;
            padding: 10px;
            border: 1px solid black;
         }
         .content {
            width: 70%;
            float: left;
            padding: 10px;
            border: 2px dotted black;
         }
      </style>
   </head>
   <body>
      <div class = "header">
         <h1>Header</h1>
      </div>
      <div class = "leftmenu">
         <ul>
            <li>Menu One</li>
            <li>Menu Two</li>
            <li>Menu Three</li>
            <li>Menu Four</li>
            <li>Menu Five</li>
            <li>Menu Six</li>
            <li>Menu Seven</li>
            <li>Menu Eight</li>
            <li>Menu Nine</li>
            <li>Menu Ten</li>
         </ul>
      </div>
      <div class = "content">
         <h1>Demo</h1>
         <p>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.
         </p>
      </div>
   </body>
</html>

  1. CSS লিনিয়ার-গ্রেডিয়েন্ট() ফাংশন

  2. CSS ব্যবহার করে Z-Index-এর সাথে ওভারল্যাপিং উপাদান

  3. টেক্সট ইন্ডেন্টেশন CSS এর সাথে কাজ করছে

  4. কিভাবে CSS দিয়ে একটি প্রতিক্রিয়াশীল কাটআউট/নকআউট পাঠ্য তৈরি করবেন?