Menu en CSS
Publicado por Tosto (1 intervención) el 18/11/2005 22:57:04
Hola, estoy tratanto de hacer un menu en CSS pero, tengo problemas con el browser.
Este es el codigo HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento sin título</title>
<!--[if IE 5]>
<style>
#navlist a {
height: 1em;
float: left;
clear: both;
width: 100%;
}
</style>
<![endif]-->
<!--[if IE 6]>
<style>
#navlist a {height: 1em;}
</style>
<![endif]-->
<link href="menu.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="navlist">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Page One</a></li>
<li><a href="#">Page Two</a></li>
<li><a href="#">Page Three</a></li>
<li><a href="#">Page Four</a></li>
<li><a href="#">Page Five</a></li>
</ul>
</div>
</body>
</html>
como pueden ver ya escribi los comenrarios necesarios para que el broser me permita realizar las acciones sobre el menu.
Lo que no tengo muy claro es si los comentarios deben de ir a aqui en el file css, yo ya lo intente pero tampoco funciona, por favor si alguien me pudiera dar alguna recomendacion se lo agradeceria mucho
Este es el codigo HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Documento sin título</title>
<!--[if IE 5]>
<style>
#navlist a {
height: 1em;
float: left;
clear: both;
width: 100%;
}
</style>
<![endif]-->
<!--[if IE 6]>
<style>
#navlist a {height: 1em;}
</style>
<![endif]-->
<link href="menu.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="navlist">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Page One</a></li>
<li><a href="#">Page Two</a></li>
<li><a href="#">Page Three</a></li>
<li><a href="#">Page Four</a></li>
<li><a href="#">Page Five</a></li>
</ul>
</div>
</body>
</html>
como pueden ver ya escribi los comenrarios necesarios para que el broser me permita realizar las acciones sobre el menu.
Lo que no tengo muy claro es si los comentarios deben de ir a aqui en el file css, yo ya lo intente pero tampoco funciona, por favor si alguien me pudiera dar alguna recomendacion se lo agradeceria mucho
Valora esta pregunta


0