tenfourfox/layout/reftests/abs-pos/table-internal-8-ref.html

25 lines
448 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!DOCTYPE html>
<html>
<head>
<style>
#good {
background-color: green;
}
.abs {
position: fixed;
margin: 0;
padding: 0;
top: 25px;
left: 25px;
width: 50px;
height: 50px;
background-color: green;
}
</style>
</head>
<body>
The green square should completely cover the red square.
<div class="abs" id="good"></div>
</body>
</html>