<!DOCTYPE html>
<html>
<head>
<title> Menú desplegable </title>
<meta charrset="utf-8">
<link rel="stylesheet" type="text/css" media="screen">
</head>
<body>
<nav>
<ul>
<li> item1 </li>
<li> item2
<ul>
<li> it2.1 </li>
<li> it2.2 </li>
</ul>
</li>
<li> item3 </li>
</ul>
</nav>
</body>
</html>
css
nav > ul > li >ul
{
display:none;
}
nav > ul > li:hover > ul
{
display: block;
}
0 comentarios:
Publicar un comentario