Ver Mensaje Individual
  #9 (permalink)  
Antiguo 14/07/2008, 12:25
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: Como diseño un menu con viñetas?

Una forma mejor de hacerlo:

Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es-es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
#menu ul {
font: 0.8em Verdana, Geneva, Arial, Helvetica, sans-serif;
list-style-type:none
}
#menu ul li {background: url(img/navArrowRight.gif) no-repeat left center;
}
#menu a{
display: block;
width: 100px;
text-indent: 14px;
text-decoration: none;
}
#menu a:hover {text-decoration: underline;}
</style>
</head>
<body>
<div id="menu">
<ul>
<li><a href="#">Uno</a></li>
<li><a href="#">Dos</a></li>
<li><a href="#">Tres</a></li>
<li><a href="#">Cuatro</a></li>
</ul>
</div>
</body>
</html>
Mikel.