blob: 1fa092ae2bca8ec078cad7ea05bba49446e91693 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>CSS Reference File</title>
<link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
</head>
<style>
body {
margin: 0;
}
#line {
position: absolute;
height
top: 50px;
left: 168px;
width: 2px;
height: 200px;
border-left: 2px solid blue;
}
#square {
position: absolute;
top: 130px;
left: 170px;
width: 40px;
height: 40px;
background-color: green;
}
</style>
<body>
<p>The test passes if there is a green square to the right of the blue line. There should be no red.</p>
<div id="line"></div>
<div id="square"></div>
</body>
</html>