CSS Menu navigation responsive et fixe

CSS Menu navigation responsive et fixe - HTML/CSS - Programmation

Marsh Posté le 07-11-2017 à 19:31:21    

Bonjour,  
 
quelqu'un aurait une idée pour avoir un menu fixe en haut de ma page ? En mode normal j'y arrive mais en mode mobile pas du tout....
 
Le code ci dessous :
 
.topnav {
    background-color:#f5f5f5;
    overflow: hidden;
  opacity: 0.6;
 position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width:100%;
   
}
 
/* Style the links inside the navigation bar #f2f2f2*/
.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 20px 16px;
    text-decoration: none;
    font-size: 14px;
  letter-spacing: 5px;
 
}
  a {
     
    color: white;
     text-decoration: none;
     
 
}
  a:hover {
    background-color: white;
    color: black;
   
}
 
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
 
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}
.bgimg-1 {
}
 
 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home" ). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
 
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
   
 
   
 
   
   
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


---------------
http://www.alexandre-behtash.com
Reply

Marsh Posté le 07-11-2017 à 19:31:21   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed