blob: 9f4b82b983d4ccf96a3685bfefdf6b8889a11562 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title>Reference File</title>
<link rel="author" title="Chris Sanborn" href="mailto:granimalcracker@gmail.com">
<style type="text/css">
.container {
position: absolute;
}
.greenSquare {
position: absolute;
width: 200px;
height: 200px;
background-color:green;
}
</style>
</head>
<body>
<p>The test passes if you hover over the green square and it completely covers the red square.</p>
<div class="container">
<div class="greenSquare"></div>
</div>
</body>
</html>
|