Ver Mensaje Individual
  #1 (permalink)  
Antiguo 16/02/2007, 15:00
zsamer
 
Fecha de Ingreso: noviembre-2003
Mensajes: 798
Antigüedad: 20 años, 5 meses
Puntos: 8
Problema con menu de lista en IE

Hola tengo un problema con un menu de lista en Internet Explorer.

Sucede que me muestra unos espacios entre las listas, lo pueden ver en este Link.

el codigo CSS es el siguiente:

Código PHP:
/*/////////////////////////// INFECTEDFX.NET ////////////////////////////////////////*/
body {
    
text-align:left;
    
margin15px;
    
height100%;
    
padding0px;
    
font-familyVerdanaArialHelveticaSans Serif;
    
font-size11px;
    
color#444444;
    
background-color#ccc;
    
}
    
/* Contenedor de nuestro menú*/
#navigation{
    
width191px;
    
height38px;
    
padding:0;
    
margin:0;
    
background#666;
}

ul#mainMenu {
    
list-style:none;
    
margin:0;
    
padding:0;
}

ul#mainMenu li{
    
padding:0;
    
margin:0;    
}

ul#mainMenu li a{
    
display:block;
    
width191px;
    
height19px;
    
margin:0;
    
padding:0;
    
text-decoration:none;
    
text-align:left;
}

ul#mainMenu li a span {
    
margin:0;
    
padding:0;
    
display:none/*Oculto el texto.*/
}

#inicio {
    
background-image:url(../menu-inicio.jpg);
    
width191px;
    
height19px;

}

#antecedentes {
    
background-image:url(../menu-antecedentes.jpg);
    
width191px;
    
height19px;

Y el HTML :

Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
title>xxx</title>
<
link href="menu/menu.css" rel="stylesheet" type="text/css" />
</
head>
<
body>
                <
div id="navigation">
                  <
ul id="mainMenu">
                    <
li id ="inicio"><a href="#"><span>Inicio</span></a></li>
                    <
li id="antecedentes"><a href="#"><span>Antecedentes</span></a></li>
                  </
ul>
                </
div>
</
body>
</
html
cualquier idea muy agradecido.

saludos.

zsamer

Última edición por zsamer; 16/02/2007 a las 20:09