কম্পিউটার

CSS সহ ওয়েব পৃষ্ঠার নীচে থাকার জন্য নেভিগেশন বার সেট করুন


নীচে নেভিগেশন বার সেট করতে, পজিশন ব্যবহার করুন:স্থির সম্পত্তি, নীচের সম্পত্তি সহ .

আপনি নীচের অংশে থাকা একটি মেনু বাস্তবায়ন করতে নিম্নলিখিত কোডটি চালানোর চেষ্টা করতে পারেন,

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         ul {
            list-style-type: none;
            position: fixed;
            bottom: 0;
            width: 100%;
         }
         li {
            float: left;
               border-right: 1px solid white;
         }
         li a {
            display: block;
            padding: 8px;
            background-color: orange;
         }
         li:last-child {
            border-right: none;
         }
         div {
            padding:10px;
            margin-top:10px;
            background-color:white;
            height:1000px;
         }
      </style>
   </head>
   <body>
      <ul>
         <li><a href = "#home">Home</a></li>
         <li><a href = "#news">News</a></li>
         <li><a href = "#contact">Contact</a></li>
         <li><a href = "#about">About</a></li>
      </ul>
      <div>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
         <p>Adding demo text to check fixed menu.</p>
      </div>
   </body>
</html>

  1. কিভাবে CSS দিয়ে একটি ফিক্সড সাইড নেভিগেশন মেনু তৈরি করবেন?

  2. কিভাবে CSS দিয়ে নিচের নেভিগেশন মেনু তৈরি করবেন?

  3. কিভাবে CSS দিয়ে একটি অন স্ক্রোল ফিক্সড নেভিগেশন বার তৈরি করবেন?

  4. এন্ড্রয়েডের জন্য Chrome-এ মেনু বারকে নীচের দিকে কীভাবে সরানো যায়