Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/04/2010, 04:42
tempto
 
Fecha de Ingreso: julio-2009
Mensajes: 103
Antigüedad: 14 años, 9 meses
Puntos: 2
Respuesta: Crear un menu centrado con div y CSS

Aquí lo tienes, me he permitido la licencia de hacerte algunos cambios en el css.
Un consejo, utiliza las identaciones y los intros para aclarar más el código y diferenciar unas partes de otras

Código HTML:
Ver original
  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. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
  4. <title>Documento sin t&iacute;tulo</title>
  5. <style type="text/css">
  6. <!--
  7. body{
  8. font-family : Helvetica, Verdana, Arial, sans-serif;
  9. background-color : white;
  10. }
  11. a:link {
  12. font-size : 14px;
  13. font-style : normal;
  14. font-weight : normal;
  15. color : #fffaf3;
  16. text-decoration : none;
  17. border : 0;
  18. }
  19.  
  20. .central {
  21. top: 5px;
  22. margin:auto;
  23. text-align:center;
  24. height:80px;
  25. width:400px;
  26. }
  27. .fondo{
  28. position:absolute;
  29. top:0px;
  30. height:100px;
  31. width:100%;
  32. background-image: url('http://www.factoriadearte.com/imagenes/fondo_arriba.gif');
  33. }
  34.  
  35. #botonera{
  36. text-align:center;
  37. margin:auto;
  38. }
  39.  
  40. #botonera li {
  41.     display:inline;
  42. }
  43.  
  44. -->
  45. </head>
  46.  
  47. <div class="fondo">
  48. <div class="central";><a href="http://www.factoriadearte.com/" target="_self"> <img src="http://www.factoriadearte.com/imagenes/logo_arriba.png" width="139" height="51" alt="dise&ntilde;o gr&aacute;fico" border="0"/></a>
  49.  
  50.     <div id="botonera">
  51.         <ul>
  52.             <li> <a href="http://www.factoriadearte.com/" target="_self">Inicio</a> </li>
  53.             <li> <a href="http://www.factoriadearte.com/nosotros.php" target="_self">Nosotros</a> </li>
  54.             <li> <a href="http://www.factoriadearte.com/diseno.php" target="_self" >Dise&ntilde;o</a> </li>
  55.             <li> <a href="http://www.factoriadearte.com/contacto.php" target="_self">Contacto</a> </li>
  56.         </ul>
  57.     </div>
  58. </div>
  59. </div>
  60.  
  61. </body>
  62. </html>

Salu2