Probleme menu onglet

Probleme menu onglet - HTML/CSS - Programmation

Marsh Posté le 08-09-2014 à 15:58:13    

Bonjour a tous,  
 
J'aimerais de l'aide car je suis bloquer sur un probleme avec mon menu a onglet  
je vous presente le code  
 

Spoiler :

<!DOCTYPE html>
<html>
 <head>
  <link rel="stylesheet" href="CSS_WEB.css"/>
  <meta charset ="utf-8"/>
 </head>
 
 <body>
  <header>
   <p> test </p>
  </header>
 </body>
 
 <nav>
  <ul id= "MENU" >
   <li> <a href="Accueil.html">Accueil</a></li>
   <li> <a href="Cours.html"></a>Cours</a></li>
   <li> <a href="CV.html"></a>Curriculm Vitae</a></li>
   <li> <a href="LM.html"></a>Lettre de Motivation</a></li>
   <li> <a href="Projet.html"></a>Projets</a></li>
   <li> <a href="Contact.html"></a>Contact</a></li>
  </ul>
 </nav>
 
 <section>
  <div id= "Accueil" >
   <h2>Bonjour a tous et bienvenue sur mon site </h2>  
    <p> Bienvenue sur mon site web, je me présente je suis </p>
    <p>Actuellement en  </p>
    <p>Passioné par l'informatique depuis maintenant de nombreuses années <br>
     J'ai décidé de me lancer pleinement dans cette passion en suivant un cursus informatique a partir du lycée  
     J'aimerais a present m'orienter vers le developpement grâce a des languages informatiques que j'ai apprit au fil des années en autoditacte </p>
     
    <p> J'ai donc décidé de mettre en place ce site web comportant mes projets pendant l'alternance aussi bien en entreprise qu'au CESI </p>
    <p> Bonne visite et j'espere que cela vous plaira </p>
  </div>
   
  <div id= "Annexes" >
   <p> pour telecharger mon cv et ma lettre de motivation </p>
   <p> Derniere mise a jour </p>
  </div>
 
 </section>
 
 <footer>
 <p> test</p>
 </footer>
 </body>
</html>


 
et mon css  
 

Spoiler :

html{
    background: grey;
    font: 1.1em sans-serif;
}
 
body{}
 
header{
text-align : center;
margin-left :12%;
margin-right:12%;
border:1px solid black;}
 
nav{
margin-left :12%;
margin-right:12%;
margin-top :0.3%;
}
 ul{
    display: inline;
    width: 500px;
    margin: 100px auto;
    padding: 0;
  background: linear-gradient(deepskyblue, dodgerblue);
  border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3),
                0 3px 5px rgba(0, 0, 0, .2),
                0 5px 10px rgba(0, 0, 0, .2),
                0 20px 20px rgba(0, 0, 0, .15);
}
ul li{
    display: table-cell;
}
ul li a{
    display: inline;
    text-align: center;
    color: rgba(0, 0, 0, .7);  
    text-decoration: none;
    padding: 8px 8px 17px 8px;
 text-shadow: 0 1px 0 rgba(255, 255, 255, .4);
 transition: padding .3s;
 
}
ul li:first-child a{
    border-radius: 3px 0 0 3px;
}
ul li:last-child a{
    border-radius: 0 3px 3px 0;
}
ul li a:hover,  
ul li a:focus{
    background: rgba(255,255,255,.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset,  
                0 -1px 0 hsl(210, 100%, 42%) inset,  
                0 -2px 0 hsl(210, 100%, 48%) inset,  
                0 -3px 0 hsl(210, 100%, 54%) inset,  
                0 -4px 0 hsl(210, 100%, 60%) inset,  
                0 -5px 0 hsl(210, 100%, 70%) inset;  
    padding: 8px 25px 17px 25px;
 
}  
ul li a:active{
    background: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.1));  
    box-shadow: 0 0 2px rgba(0,0,0,.3) inset;
}
 
 
 
 
 
 
     
#Accueil{
float:left;
margin-left :12%;
margin-top:1%;
width: 56%;
padding :1em;
border:1px solid black;}
 
#Annexes{
float:right;
margin-right:12%;
margin-top:1%;
width:15%;
padding:1em;
border:1px solid black;
}
 
footer {
padding:0.5em;
float :left;
border :1px solid black;
margin-left :12%;
margin-top:1%;
margin-bottom:1%;
width:74.5%;
position:fixe;
bottom:0;
left:0;
height:100px]


 
si vous regardez mes focus du menu ne sont pas alignes avec le reste  
 
Quelqu'un peut til m'aider ??  
 
Merci d'avance

Reply

Marsh Posté le 08-09-2014 à 15:58:13   

Reply

Marsh Posté le 19-10-2014 à 15:10:14    

Hello,
 
Tu fermes ton body avant le début de la nav.
 
Réessaye en intégrant nav > header > body

Reply

Sujets relatifs:

Leave a Replay

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