Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/04/2009, 09:03
Avatar de willyfc
willyfc
 
Fecha de Ingreso: octubre-2008
Ubicación: Santa Cruz - Bolivia
Mensajes: 662
Antigüedad: 15 años, 6 meses
Puntos: 40
Respuesta: Centrar menu horizontal

pues esta sería la forma:

Código html:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="es-es" xml:lang="es-es">
  3. <style type="text/css">
  4. #menu {
  5. font: .9em "Trebuchet MS", Arial, Helvetica, sans-serif;
  6. margin-top: 5px;
  7. background-color: blue;
  8. width: 100%;
  9. text-align:center;
  10. }
  11.  
  12. #menu ul {
  13. list-style-type: none;margin: 0;padding: 0;
  14. }
  15. #menu ul li {
  16. display:inline;
  17. padding-right: 5px;
  18. }
  19.  
  20. #menu a {
  21. text-decoration: none;
  22. color: #3366CC;
  23. background: #F0F7FC;
  24. padding: 3px 30px;
  25. text-align: center;
  26. border: 1px solid #ACCFE8;
  27. border-width: 2px;
  28. }
  29.  
  30. #menu a.activo {
  31. background: #ACCFE8;
  32. border-color: #F0F7FC;
  33. }
  34.  
  35. #menu a:hover {
  36. background: #DBEBF6;
  37. }
  38. </head>
  39. <div id="menu">
  40. <ul>
  41. <li><a class="activo" href="/">Inicio</a></li>
  42. <li><a href="/empresa">Empresa</a></li>
  43. <li><a href="/servicios">Servicios</a></li>
  44. <li><a href="/clientes">Clientes</a></li>
  45. <li><a href="/contacto">Contacto</a></li>
  46. <li><a href="/empleo">Empleo</a></li>
  47. </ul>
  48. </div>
  49. </body>
  50. </html>
__________________
WFC
codigo82