-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path5.html
More file actions
executable file
·85 lines (72 loc) · 1.05 KB
/
5.html
File metadata and controls
executable file
·85 lines (72 loc) · 1.05 KB
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
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css"></style>
<style type="text/css">
.ab
{
height: 100px;
width: 100px;
background: green;
border-radius: 50%;
box-shadow: 5px 5px 2px 2px blue;
}
.abc
{
height: 100px;
width: 100px;
background: red;
/*margin: 100px;*/
/*padding: 100px;*/
/*margin-top: -50px;*/
opacity: 0.9;
}
.abc:hover
{
background: maroon;
color: white;
}
.parent
{
height: 300px;
width: 300px;
background: red;
}
.child
{
height: 100px;
width: 100px;
background: maroon;
display: none;
}
.parent:hover .child
{
display: block;
background: green;
}
.list li
{
display: inline;
}
</style>
</head>
<body>
<div class="ab">
</div>
<div class="abc">
hi
</div>
<div class="parent">
<div class="child">
Hello
</div>
</div>
<ul class="list">
<li>Home</li>
<li>About</li>
<li>Contact</li>
<li>Gallery</li>
</ul>
</body>
</html>