-
Notifications
You must be signed in to change notification settings - Fork 1
/
dropdown.html
63 lines (57 loc) · 1.15 KB
/
dropdown.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
<html>
<head>
<style>
#con ul {
list-style:none;
}
#con ul li {
background:yellow;
width:150px;
height:50px;
border:1px solid black;
text-align:center;
line-height:50px;
color:white;
float:left;
position:relative;
}
#con ul ul{
margin:0px;
padding:0px;
display:none;
}
#con ul li:hover{
background:green;
}
#con ul ul ul {
margin-left:150px;
top:0px;
position:absolute;
}
#con ul li:hover > ul{
display:block;
}
</style><meta charset="utf-8">
</head><body>
<div id ="con">
<ul>
<li>pubg</li>
<li>subway surfers</li>
<li>candy crush
<ul>
<li>hearts</li>
<li>color bomb
<ul>
<li>red</li>
<li>yellow</li>
<li>green</li>
<li>brown</li>
</ul>
</li>
<li>bombs</li>
</ul></li>
<li>bounce</li>
</ul>
</div>
</body>
</html>