Menu 5 onglets

Menu 5 onglets - HTML/CSS - Programmation

Marsh Posté le 08-02-2009 à 19:12:54    

Hello les gens,
je dois réaliser un site avec un bandeau à 5 onglets. Il marche nickel sous Mozilla mais je coince avec IE. Des idées ?

 
Code :
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Le site de la liste "Les Temps d'Art"</title>
  6. <style type="text/css">
  7. <!--
  8. body {
  9. margin: 0;
  10. padding: 0;
  11. background-color:#e8ff93;
  12. }
  13. #container {
  14. width: 65%;
  15. margin: 0 auto;
  16. background-color: #CCFF00;
  17. border: 1px solid #000000;
  18. }
  19. #header {
  20. background-color: #FFFFFF;
  21. }
  22. #menu {
  23. height:auto;
  24. margin:none;
  25. }
  26. #content {
  27. background-color:#99CC66;
  28. margin: 0 auto;
  29. padding: 0 auto;
  30. padding-top:none;
  31. height:100%;
  32. overflow:auto;
  33. height:400px;
  34. }
  35. #footer {
  36. clear: both;
  37. }
  38. body,td,th {
  39. font-family: Verdana, Geneva, sans-serif;
  40. font-size:12px;
  41. }
  42. #nav {
  43.   list-style: none ;
  44.   margin: 0 ;
  45.   padding: 0 ;
  46.   overflow: hidden ;
  47.   width:100%;
  48.   }
  49. #nav li {
  50.   float: left ;
  51.   width: 19.75% ; /*A changer*/
  52.   border: 1px solid #600 ;
  53.   /*margin-right: 1px ;*/
  54.   color: #fff ;
  55.   background: #e8ff93 ;
  56.  
  57.   }
  58. #nav li a {
  59.   display: block ;
  60.   background: #e8ff93 ;
  61.   color: #fff ;
  62.   font: 1em "Trebuchet MS",Arial,sans-serif ;
  63.   line-height: 1em ;
  64.   padding: 4px 0 ;
  65.   text-align: center ;
  66.   text-decoration: none ;
  67.   }
  68. #nav li a:hover, #nav li a:focus, #nav li a:active {
  69.   background: #99cc66 ;
  70.   text-decoration: underline ;
  71.   }
  72. --></style>
  73. <!--[if lt IE 7]>
  74. <style type="text/css">
  75. #nav {
  76.   overflow: visible ;
  77.   height: 1% ;
  78.   }
  79. </style>
  80. <![endif]-->
  81. </style>
  82. <body>
  83. <div id="container">
  84.   <div id="header">
  85. <img src="header.jpg" alt="Les temps d'art"/>
  86.   </div>
  87.     <div id="menu" align="center">
  88.     <ul id="nav">
  89.   <li><a href="index.html">Accueil</a></li>
  90.          <li><a href="presentation.html">Présentation</a></li>
  91.   <li><a href="projets.html">Nos projets</a></li>
  92.   <li><a href="team.html">L'équipe</a></li>
  93.   <li><a href="contact.html">Nous contacter</a></li>
  94.  </ul>
  95.   </div>
  96.   <div id="content">
  97.     <p><h2>Bienvenue sur le site de la liste BDA "Les Temps d'Art"</h2></p>
  98.     <p>Sur ce site vous trouverez toutes les informations nous concernant : notre vidéo de promotion, une présentation de l'équipe, nos projets et enfin comment nous contacter.</p>
  99.     </div>
  100.   <div id="footer" align="center">© Les temps d'art 2009
  101.   </div>
  102. </div>
  103. </body>
  104. </html>



Message édité par Glycerin le 08-02-2009 à 19:13:20
Reply

Marsh Posté le 08-02-2009 à 19:12:54   

Reply

Sujets relatifs:

Leave a Replay

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