-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQ9.html
80 lines (55 loc) · 971 Bytes
/
Q9.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
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Dropdown</title>
<style>
.dropdown{
position:relative;
display:inline-block;
color:blue;
width:100px;
height:60px;
}
button{
background-color:gray;
border:2px solid black;
padding:10px;
}
.dropdown-content{
position:absolute;
display:none;
color:red;
border:2px solid black;
min-width:100px;
}
.dropdown-content a{
display:block;
background-color:#8f82d9;
color:#073e6b;
border:2px solid black;
padding:10px 10px;
}
.dropdown:hover .dropdown-content {
display:block;
background-color:#76d9de;
}
.dropdown-content a:hover {
display:block;
background-color:#76d9de;
}
.dropdown:hover button {
background-color:#6dbf83;
}
</style>
</head>
<body>
<div class ="dropdown">
<button>Move Cursor</button>
<div class ="dropdown-content">
<a href ="#CSW">CSW</a>
<a href ="#DLD">DLD</a>
<a href ="#AD">AD</a>
</div>
</div>
</body>
</html>