Jump to content

Ann318

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by Ann318

  1. I am using a responsive bottom navbar, but due to the large amount of information on my site i need a 'dropup'. On the 3schools website there is an example of responsive sidenav en topnav with dropdowns, but no resp bottom nav with dropup. I know it is possible, but I just can't seem to make it work like it should with a drop up. Is there anyone who knows how to make ik work with a dropup? Thanks in advance! <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body {margin:0;} .navbar { overflow: hidden; background-color: #333; position: fixed; bottom: 0; width: 100%; } .navbar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 17px; } .navbar a:hover { background-color: #ddd; color: black; } .navbar a.active { background-color: #4CAF50; color: white; } .navbar .icon { display: none; } @media screen and (max-width: 600px) { .navbar a:not(:first-child) {display: none;} .navbar a.icon { float: right; display: block; } } @media screen and (max-width: 600px) { .navbar.responsive .icon { position: absolute; right: 0; bottom:0; } .navbar.responsive a { float: none; display: block; text-align: left; } } </style> </head> <body> <div class="navbar" id="myNavbar"> <a href="#home" class="active">Home</a> <a href="#news">News</a> <a href="#contact">Contact</a> <a href="#about">About</a> <a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">&#9776;</a> </div> <div style="padding-left:16px"> <h2>Responsive Bottom Navbar Example</h2> <p>Resize the browser window to see how it works.</p> </div> <script> function myFunction() { var x = document.getElementById("myNavbar"); if (x.className === "navbar") { x.className += " responsive"; } else { x.className = "navbar"; } } </script> </body> </html>
×
×
  • Create New...