-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.html
70 lines (65 loc) · 1.7 KB
/
menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>prueba menu</title>
<style>
/*=============MENU======================*/
#nav ul
{
margin:0;
padding: 0;
list-style-type: none;
}
#nav ul li
{
display: inline-block;
vertical-align: top;
margin-right: 2em;
}
#nav ul li ul
{
position: absolute;
display: none;
}
#nav ul li ul > li
{
width: 100%; /*para que los submenus queden vertical*/
}
#nav ul li:hover > ul
{
display: block;
}
/*=============MENU======================*/
</style>
</head>
<body>
<div id="contenedor">
<header>
<nav id="nav">
<ul>
<li>Inicio</li>
<li class="menu">Material
<ul class="submenu">
<li>Talleres</li>
<li>Recursos</li>
<li>Recopilaciones</li>
</ul>
</li>
<li>Mi Sitio
<ul class="submenu">
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</li>
<li>Eventos</li>
<li>Comunidades</li>
<li>Ponentes</li>
<li>Discusiones</li>
</ul>
</nav>
</header>
</div>
</body>
</html>