-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhover.html
More file actions
54 lines (43 loc) · 945 Bytes
/
Copy pathhover.html
File metadata and controls
54 lines (43 loc) · 945 Bytes
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
<!doctype html>
<html>
<head>
<title>Hover</title>
<meta name="viewport" content="width=device-width">
<style type="text/css" media="screen">
ul{
list-style-type: none;
}
li{
float: left;
padding: 1em;
}
.box{
background-color: green;
width: 100px;
height: 150px;
}
.box:hover{
background-color: blue;
width: 150px;
height: 200px;
}
/* NOTE: used for screen capture in the presentation */
.fakeHover{
background-color: blue;
width: 150px;
height: 200px;
}
</style>
</head>
<body>
<h1>Hover</h1>
<div id="covers">
<ul>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
<li><div class="box"></div></li>
</ul>
</div>
</body>
</html>