blob: 9d5eef896ab6cab04be090ce970cb7d2347a9fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>fractions bar</title>
<style type="text/css">
#green {
position: absolute;
background: green;
width: 150px;
height: 150px;
left: 50px;
top: 50px;
}
</style>
</head>
<body>
<p>This test passes if you see a green <strong>square</strong> and no red.</p>
<div>
<div id="green"></div>
</div>
</body>
</html>
|