Probleme barre css

Par BunnyGaming, il y a 1 an


Les bases HTML/CSS

Bonjour, je suis entrain de finaliser mon design de page, mais j'ai un soucis depuis que j'ai incorpore mon footer j'ai une barre qui apparrait sur ma nav barre quand je descend dans la page, la nav bar est fixe.

https://ibb.co/hK6dhYd

4 réponses

BunnyGaming, il y a 1 an

Bonjour voici la parti html

<body> <?php require('include/php/navbar.php'); ?> <div class="presentation"> <ul class="gauche"> <img src="image/test-site.jpg" alt=""> </ul> <ul class="droit"> <h1 class="texte">Présentation</h1> <p>Bonjour et bienvenue sur mon site..................................... ............................ ............................. ............... ......................... ....................... </p> </ul> </div> <?php require('include/php/footer.php'); ?> <script src="script.js"></script> </body>

et css

/*-----Accueil-----*/ .presentation{ background-color: white; width: 1500px; height: 700px; border: 15px solid white; border-radius: 50px; box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5); padding: 150px; margin: auto; margin-top: 200px; margin-bottom: 150px; } .gauche{ background-color: #333; border-radius: 30px; width: 600px; height: 400px; margin-top: -15px; margin-left: -20px; } .droit{ background-color: white; border-radius: 30px; width: 500px; height: 400px; margin-top: -400px; margin-left: 700px; } .texte{ text-align: center; } nav { position: fixed; width: 100%; display: flex; align-items: center; padding: 30px 25px; background: #660033; box-shadow: inset 0px -1px 0px #c5c5c6; top: 0; }
BunnyGaming, il y a 1 an

Alors le probleme apparait quand a partir du moment ou je doit descendre et monter sur la page ,

qu'il n'y est plus cette espece de barre blanche quand on monte qui passe sur la navbarr

Alainpre, il y a 1 an

On a pas le footer. Difficile de répondre.