Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/05/2006, 06:08
MMCQ
 
Fecha de Ingreso: marzo-2006
Mensajes: 401
Antigüedad: 18 años, 1 mes
Puntos: 1
No Funciono!...
este es el archivo CSS
Cita:
CSS

header#navlist {
background: #1A1A1A url(AA.gif) 100% 0 no-repeat;
}
#navlist ul
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#navlist li
{
display: inline;
list-style-type: none;
}

#navlist a { padding: 3px 10px; }

#navlist a:link, #navlist a:visited
{
color: #fff;
background-color: #036;
text-decoration: none;
}

#navlist a:hover
{
color: #fff;
background-color: #369;
text-decoration: none;
}
Este es el Achivo .html
Cita:
<html>
<body>
<head>
<title> Una Prueba</title>
<link rel="stylesheet" type="text/css" href="BB.css" />
</head>

<div id="navcontainer">
<ul id="navlist">
<li id="active"><a href="#" id="current">Prueba</a></li>
<li><a href="#">Prueba</a></li>
<li><a href="#">Prueba</a></li>
<li><a href="#">Prueba</a></li>
<li><a href="#">Prueba</a></li>
</ul>
</div>
</body>
</html>